jQuery-为动态添加的元素绑定事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery-为动态添加的元素绑定事件相关的知识,希望对你有一定的参考价值。
样例:
$("#modify_nick").click(function () {
$(this).css("display","none");
$("#nickname_span").empty();
var input = document.createElement("input");
$(input).attr("type", "text");
$(input).attr("id", "user_nick_id");
$(input).attr("name", "user_nick");
$(input).attr("maxlength", "20");
$(input).attr("value", "<?php echo $userinfo->nickname ?>");
$(input).appendTo("#nickname_span");
$(input).focusEnd();
});
$("#nickname_span").on("blur","input[name=‘user_nick‘]",function(){
var startVal = "<?php echo $userinfo->nickname ?>";
var endVal = $(this).val();
$("#modify_nick").css("display","block");
if(endVal != startVal){
if(endVal != ""){
$.ajax({
type: "GET",
url: "<?php echo Yii::app()->createUrl(‘user/modifyUserInfo‘) ?>",
data: {user_nick: endVal},
dataType: "json",
success: function (msg) {
if(msg == 666){
window.location.href = "<?php echo Yii::app()->createUrl(‘user/userManager‘) ?>";
}
}
});
}
}
});
说明:
在使用jQuery的方式为元素绑定事件时,我经常使用bind或者click,但这只能为页面已经加载好的元素绑定事件。像需要用ajax的方式请求远程数据来动态添加页面元素时,显然以上几种绑定事件的方式是无效的,具体写法如下图。
$(selector).bind(event,data,function)
$(selector).click(function)
- $("#searchMoveVideoResult ul li").bind("click",function(){
- $(this).css("border","5px solid #000");
- });
- $("#searchMoveVideoResult ul li").click(function(){
- $(this).css("border","5px solid #000");
- });
为动态添加的元素绑定事件有以下几种方式:
1.delegate():向匹配元素的当前或未来的子元素附加一个或多个事件处理器
$(selector).delegate(childSelector,event,data,function)
目前大多数jquery版本都可用,不过我一般不用它。
- $("#searchMoveVideoResult").delegate("ul li","click",function(){
- $(this).css("border","5px solid #000");
- });
- $("#searchMoveVideoResult").delegate("click","ul li",function(){
- $(this).css("border","5px solid #000");
- });
看出它们的不同了吗,第二种写法是错误的,记住一定要把事件写在元素的后面。
2.live():为当前或未来的匹配元素添加一个或多个事件处理器
$(selector).live(event,data,function)
jquery1.8版本以前推荐使用该方法;jquery1.8版本之后就不建议使用了,我试了下,也是无效的,所以高版本的jquery推荐使用on()方法绑定事件。
- $("#searchMoveVideoResult ul li").live("click",function(){
- $(this).css("border","5px solid #000");
- });
3.on():适用于当前及未来的元素(比如由脚本创建的新元素)
$(selector).on(event,childSelector,data,function,map)
试验了下,大多数版本的jquery都是支持这个方法的,也是我比较喜欢使用的方法。
- $("#searchMoveVideoResult").on("click","ul li",function(){
- $(this).css("border","5px solid #000");
- });
- //下面这样写就是错的了,一定要把动态添加的元素放到on()方法里面才行。</span>
- $("#searchMoveVideoResult ul li").on("click",function(){
- $(this).css("border","5px solid #000");
- });
4.onclick事件:动态添加数据时,就为元素绑定onclick事件
- function searchMoveVideo(){
- $.ajax({
- type:"POST",
- url:"http://op.juhe.cn/onebox/movie/video",
- data:{"q":$("#moveVideo").val(),"key":"346f79df993776748b242236464d565d"},
- dataType:"JSONP",
- success:function(data){
- console.log(data);
- if(data.error_code=="0"){
- var result=data.result;
- console.log(result);
- var html=result.title+"<br>"+result.tag+"<br>"+result.act+"<br>"+result.year+"<br>" +result.area+"<br>"+result.dir+"<br>"+result.desc;
- html+="<br><img src=‘"+result.cover+"‘/><br>";
- html+=‘<ul style="list-style: none; float: left;">‘;
- var act_s=result.act_s;
- for(var i=0;i<act_s.length;i++){
- html+=‘<li style="float: left;" <span style="color:#cc0000;">onclick="showSource(this);"</span>><a target="_bla nk"><img src="‘+act_s[i].image+‘"><br>‘+act_s[i].name+‘</a></li>‘;
- }
- html+=‘</ul>‘
- $("#searchMoveVideoResult").html(html);
- }else{
- $("#searchMoveVideoResult").html(data.reason);
- }
- }
- }); }
以上是关于jQuery-为动态添加的元素绑定事件的主要内容,如果未能解决你的问题,请参考以下文章