运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The focus and blur Events</h2> <p>When you enter the input field, a function sets the background color to yellow.</p> <p>When you leave the input field, a function removes the background color.</p> <form id="myForm"> <input type="text" id="myInput"> </form> <script> let x = document.getElementById("myForm"); x.addEventListener("focus", myFocusFunction, true); x.addEventListener("blur", myBlurFunction, true); function myFocusFunction() { document.getElementById("myInput").style.backgroundColor = "yellow"; } function myBlurFunction() { document.getElementById("myInput").style.backgroundColor = ""; } </script> </body> </html>