运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The focusin and focusout 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("focusin", myFocusFunction); x.addEventListener("focusout", myBlurFunction); function myFocusFunction() { document.getElementById("myInput").style.backgroundColor = "yellow"; } function myBlurFunction() { document.getElementById("myInput").style.backgroundColor = ""; } </script> </body> </html>