HTML DOM focus() 方法

定义和用法

focus() 方法用于赋予下拉列表焦点。

语法

  1. selectObject.focus()

实例

下面的例子可为下拉列表设置焦点:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function setFocus()
  5. {
  6. document.getElementById('select1').focus()
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <form>
  13. <select id="select1">
  14. <option>Apple</option>
  15. <option>Pear</option>
  16. <option>Banana</option>
  17. <option>Orange</option>
  18. </select>
  19. <br /><br />
  20. <input type="button" onclick="setFocus()" value="Set focus" />
  21. </form>
  22.  
  23. </body>
  24. </html>