维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <script> function myFunction(x) { x.style.background = "yellow"; } </script> </head> <body> Введіть ваше ім’я: <input type="text" onfocus="myFunction(this)"> <p>Коли поле введення отримує фокус, запускається функція, яка змінює колір фону.</p> </body> </html>