jquery each方法里面循环数组对里面的每一个元素绑定live事件不可用,请教是怎么回事?

$this.find(":text[format]").each(function(){varformat=$(this).attr('format');if(forma... $this.find(":text[format]").each(function ()
{
var format = $(this).attr('format');
if (format_notices[format]['key'])
{
$(this).live('keypress', eval('keypress_' + format));
}
else
{
return false;
}

}); //绑定键盘验证事件
thank you all the way!
你改的那个方法改是不行。
$this.find(":text[format]")是一个数组。是对其每一个元素绑定live。其次bind是可以绑定上的,live和livequery都不行。
展开
 我来答
流香羽
2011-01-10 · TA获得超过1540个赞
知道小有建树答主
回答量:925
采纳率:50%
帮助的人:1347万
展开全部
live绑定事件是针对选择器的,比如:
$("a").live("click",function(){...});
而不能使用$("body").find("a").live("click",function(){...});来进行绑定,不能以筛选的方式锁定元素范围。同时live绑定的事件是有限制(click, dblclick, keydown, keypress, keyup, mousedown, mousemove, mouseout, mouseover, mouseup, hover*)。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
蓓雷
2011-01-10 · TA获得超过2894个赞
知道小有建树答主
回答量:869
采纳率:0%
帮助的人:225万
展开全部
首先你的理解live的作用啊,还有就是each函数不是怎么用的,我帮你改下,你看看:
$this.find(":text[format]").live('keypress', function(){
var format = $(this).attr('format');
if(format_notices[format]['key']){
eval('keypress_' + format);
}
else
{
return false;

}
);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-01-10
展开全部
.live() doesn't work this way, it attaches handlers up at the document level and listens for when events bubble up. A new element, old element, it doesn't matter...they all bubble events the same way. The common misconception is that .live() attach events as elements are added...this isn't the case. Just because of how it works, .each() can't be used in this way.
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式