JavaScript 参考手册
onfocus 事件
JavaScript 中, 使用 addEventListener() 方法
源代码:
点击运行 »
<p>该实例使用了 addEventListener() 方法来添加 input 元素的获取焦点事件。</p> 输入您的姓名: <input type="text" id="fname"> <script> document.getElementById("fname").addEventListener("focus", myFunction); function myFunction() { document.getElementById("fname").style.backgroundColor = "red"; } </script>
运行结果:
点击运行 »