jQuery focus() 方法

实例

将函数附加到焦点事件。焦点事件发生在 <input> 字段获得焦点时:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("input").focus(function(){
  8. $("span").css("display", "inline").fadeOut(2000);
  9. });
  10. });
  11. </script>
  12. <style>
  13. span {
  14. display: none;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <input>
  20. <span>很高兴认识你</span>
  21. <p>单击输入字段以获得焦点。</p>
  22. </body>
  23. </html>

定义与用法

当一个元素获得焦点时(通过鼠标单击或 "选项卡导航" 选择该元素时),就会发生焦点事件。

focus() 方法触发焦点事件,或在焦点事件发生时附加要运行的函数。

提示: 此方法通常与 blur() 方法一起使用。


语法

触发选定元素的焦点事件:

  1. $(selector).focus()

将函数附加到焦点事件:

  1. $(selector).focus(function)
参数描述
function可选。指定焦点事件发生时要运行的函数

更多实例

触发选定元素的焦点事件

将函数附加到焦点事件

分类导航