网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 jQuery绑定事件的几种实现方式
内容
    这篇文章主要为大家详细介绍了jQuery绑定事件的几种实现方式,感兴趣的小伙伴们可以参考一下
    本文实例为大家分享了jQuery绑定事件多种实现方法,供大家参考,具体内容如下
    <html>
    <head>
    <meta charset="utf-8" />
    <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script><!--百度CDN-->
    </head>
    <body>
    <input type="text"/>
    <input type="button" value="button1"/>
    <script>
    $(function(){
      var text = $(":text");
      var button = $(":button");
      //调试器记录日志 console.log("message"); 如:火狐浏览器,打开FireBug(按F12)
      //触发单个事件:两种方式
      button.bind("mouseover",function(){
        console.log("移入");
      });
      button.bind({
        "mouseout": function(){
          console.log("移出");
        }
      });
      //多个事件:三个方式
      text.bind("dblclick blur",function(){
        console.log("双击或者失去焦点");
      });
      text.bind({
        "dblclick blur":function(){
          console.log("双击或者失去焦点");
        }
      });
      text.bind({
        "dblclick":function(){
          console.log("双击");
        },
        blur:function(){
          console.log("失去焦点");
        }
      });
      //取消事件
      text.unbind("dblclick"); //取消单个事件
      //text.unbind("dblclick blur"); //取消多个事件
      //text.unbind(); //取消全部事件
    });
    </script>
    </body>
    </html>
    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家继续关注小编为大家分享的精彩文章。
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/18 0:42:20