博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JQuery 绑定事件
阅读量:5134 次
发布时间:2019-06-13

本文共 2414 字,大约阅读时间需要 8 分钟。

在日常写代码的时候 不免有绑定代码,对于新手的我,对JQ中事件的绑定做一个大致的区分。

 

jQuery on()方法是官方推荐的绑定事件的一个方法。

$(selector).on(event,childSelector,data,function,map)

由此扩展开来的几个以前常见的方法有.

bind()
$("p").bind("click",function(){    alert("I‘m you friend---MYmingk.");  });  $("p").on("click",function(){    alert("I‘m you friend---MYmingk.");  });

 

delegate()
 $("#div1").on("click","p",function(){    $(this).css("background-color","pink");  });  $("#div2").delegate("p","click",function(){    $(this).css("background-color","pink");  });

 

live()
$("#div1").on("click",function(){    $(this).css("background-color","pink");  });  $("#div2").live("click",function(){    $(this).css("background-color","pink");  });

 

以上三种方法在jQuery1.8之后都不推荐使用,官方在1.9时已经取消使用live()方法了,所以建议都使用on()方法。

tip:如果你需要移除on()所绑定的方法,可以使用off()方法处理。

$(document).ready(function(){  $("p").on("click",function(){    $(this).css("background-color","pink");  });  $("button").click(function(){    $("p").off("click");  });});

 

tip:如果你的事件只需要一次的操作,可以使用one()这个方法

$(document).ready(function(){  $("p").one("click",function(){    $(this).animate({fontSize:"+=6px"});  });});

trigger()绑定

$(selector).trigger(event,eventObj,param1,param2,...)$(document).ready(function(){  $("input").select(function(){    $("input").after(" Text marked!");  });  $("button").click(function(){    $("input").trigger("select");  });});

多个事件绑定同一个函数

$(document).ready(function(){  $("p").on("mouseover mouseout",function(){    $("p").toggleClass("intro");  });});

多个事件绑定不同函数

$(document).ready(function(){  $("p").on({    mouseover:function(){$("body").css("background-color","lightgray");},     mouseout:function(){$("body").css("background-color","lightblue");},     click:function(){$("body").css("background-color","yellow");}   });});

绑定自定义事件

$(document).ready(function(){    $("p").on("myOwnEvent", function(event, showName){        $(this).text(showName + "! What a beautiful name!").show();    });    $("button").click(function(){        $("p").trigger("myOwnEvent",["Anja"]);    });});

 

传递数据到函数

function handlerName(event) {    alert(event.data.msg);}$(document).ready(function(){    $("p").on("click", {msg: "You just clicked me!"}, handlerName)});

 

适用于未创建的元素

$(document).ready(function(){    $("div").on("click","p",function(){        $(this).slideToggle();    });    $("button").click(function(){        $("

This is a new paragraph.

").insertAfter("button"); });});

 

转载于:https://www.cnblogs.com/wymbk/p/5850296.html

你可能感兴趣的文章
Objective-C非正式协议与正式协议
查看>>
Windows核心编程学习九:利用内核对象进行线程同步
查看>>
洛谷P3676 小清新数据结构题(动态点分治)
查看>>
JavaScript事件冒泡简介及应用
查看>>
SPOJ DQUERY D-query(主席树 区间不同数个数)
查看>>
八 Civil3d常用显示样式的编辑与创建 ----点标签样式2
查看>>
九校联考-DL24凉心模拟Day2T1 锻造(forging)
查看>>
生产阶段Webpack打包【基础打包】
查看>>
Cortex M3/M4 学习摘要(二)
查看>>
C#时间的味道——任时光匆匆我只在乎你
查看>>
腾讯微信技术总监周颢:一亿用户增长背后的架构秘密
查看>>
高德地图 android api 实现自动定位
查看>>
Oracle常用函数——COALESCE
查看>>
学车支招,如何控制离合与方向?
查看>>
Redis 基础:Redis 配置
查看>>
ASP.NET Core 运行原理解剖[5]:Authentication
查看>>
最大后验估计(MAP)
查看>>
数据从机房迁移到阿里ECS弹性云
查看>>
F_新的假期开始了
查看>>
图像可视化
查看>>