jquery中的on方法能否为ajax新增的元素绑定事件?

 我来答
系统004
2015-12-09 · TA获得超过3254个赞
知道大有可为答主
回答量:1326
采纳率:68%
帮助的人:1167万
展开全部

您好:是可以的。之前老版本一般用live()方法,现在给动态元素绑定事件,可以用on代替。

知识扩展:

jQuery on()方法是官方推荐的绑定事件的一个方法。
$(selector).on(event,childSelector,data,function,map)
由此扩展开来的几个以前常见的方法有.
bind()
  $("p").bind("click",function(){
    alert("The paragraph was clicked.");
  });

  
$("p").on("click",function(){
    alert("The paragraph was clicked.");
  });
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(){
    $("<p>This is a new paragraph.</p>").insertAfter("button");
  });
});

希望我的解答能够帮助到您,谢谢。

cyrilkong
2012-06-29 · TA获得超过1250个赞
知道小有建树答主
回答量:295
采纳率:100%
帮助的人:264万
展开全部
可以
.bind 的方法是旧有的
.on 是比较事件导向的新方法,其实原理就是把 bind 的事件改成物件名称而已
jQuery 新版本 1.7 後来才有这功能
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yzy_130
2012-06-29 · TA获得超过810个赞
知道小有建树答主
回答量:402
采纳率:0%
帮助的人:496万
展开全部
可以的~
比如:
$("div").on({
click: function(){

//...
}
}, "a");
这句的意思就是为div中的动态绑定了click事件~
希望对您有帮助~
By Billskate
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
王东03
2012-06-29 · TA获得超过312个赞
知道小有建树答主
回答量:1116
采纳率:0%
帮助的人:448万
展开全部
要为新增的元素绑定事件用bind ,例如
$(....).bind('click',function(){
....
})
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式