onfocus - 当输入字段获得焦点时

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function myFunction(x) {
  6. x.style.background = "yellow";
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. 请输入您的姓名:<input type="text" onfocus="myFunction(this)">
  13.  
  14. <p>当输入字段获得焦点时,将触发一个更改背景颜色的函数。</p>
  15.  
  16. </body>
  17. </html>