JavaScript 中 onfocus 事件的使用是什么?
当元素获取焦点时,onfocus 事件被触发。你可以运行以下代码,了解如何在 JavaScript 中实现 onfocus event。
示例
<!DOCTYPE html> <html> <body> <p>Write below:</p> <input type = "text" onfocus = "newFunc(this)"> <script> function newFunc(x) { x.style.background = "blue"; } </script> </body> </html>
广告