jquery hover方法无法操作动态生成的元素问题
$('tr','.listwrap').hover(function(){$(this).css('background','#e8e8e8');vartag=$(thi...
$('tr','.listwrap').hover(function() {
$(this).css('background', '#e8e8e8');
var tag = $(this).children('td').eq(5).children('span').html();
if (tag=='') {
$(this).children('td').eq(5).children('span').append('<button class="setmr" onclick="saveDefault(this)">设为默认</button>');
};
}, function(){
$(this).css('background', '#fff');
// var tag = $(this).children('td').eq(5).hasClass('setmr');
var tag = $(this).children('td').eq(5).children('span').html();
if (tag!=''&&tag!='默认地址') {
$(this).children('td').eq(5).children('span').empty();
};
});
我写的这个在可以操作已经存在的元素,但是对于新生成的元素无法操作,求大神告知下,这个该怎么写 展开
$(this).css('background', '#e8e8e8');
var tag = $(this).children('td').eq(5).children('span').html();
if (tag=='') {
$(this).children('td').eq(5).children('span').append('<button class="setmr" onclick="saveDefault(this)">设为默认</button>');
};
}, function(){
$(this).css('background', '#fff');
// var tag = $(this).children('td').eq(5).hasClass('setmr');
var tag = $(this).children('td').eq(5).children('span').html();
if (tag!=''&&tag!='默认地址') {
$(this).children('td').eq(5).children('span').empty();
};
});
我写的这个在可以操作已经存在的元素,但是对于新生成的元素无法操作,求大神告知下,这个该怎么写 展开
1个回答
展开全部
没听说过jq有hover方法,使用mouseover或者mouseenter方法替代吧!
追问
已经试过了,可以是可以,但是你从代码也应该可以看到,我鼠标经过是要生成一个button,但是使用了mouseover,生成的button一直闪烁不停,根本点击不了,
$('tr','.listwrap').live('mouseenter',function() {});
$('tr','.listwrap').live('mouseout',function(){});改成这种的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询