美文网首页
jqurey事件

jqurey事件

作者: Taoqi思 | 来源:发表于2018-11-11 18:14 被阅读0次

    jQuery 事件函数

    jQuery 事件处理方法是 jQuery 中的核心函数。

    事件处理程序指的是当 HTML 中发生某些事件时所调用的方法。术语由事件“触发”(或“激发”)经常会被使用。

    通常会把 jQuery 代码放到 <head>部分的事件处理方法中:

    eg:

    <html>
    <head>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $("button").click(function(){
        $("p").hide();
      });
    });
    </script>
    </head>
    
    <body>
    <h2>This is a heading</h2>
    <p>This is a paragraph.</p>
    <p>This is another paragraph.</p>
    <button>Click me</button>
    </body>
    
    </html>
    

    该方法隐藏所有 <p> 元素: $("p").hide();

    jQuery 事件
    下面是 jQuery 中事件方法的一些例子:
    (document).ready(function) 将函数绑定到文档的就绪事件(当文档完成加载时)(selector).click(function) 触发或将函数绑定到被选元素的点击事件
    (selector).dblclick(function) 触发或将函数绑定到被选元素的双击事件(selector).focus(function) 触发或将函数绑定到被选元素的获得焦点事件
    $(selector).mouseover(function) 触发或将函数绑定到被选元素的鼠标悬停事件

    相关文章

      网友评论

          本文标题:jqurey事件

          本文链接:https://www.haomeiwen.com/subject/zemzxqtx.html