ie7 中 Livequery 检测到的对象
谁能弄清楚为什么这会给我 ie7 中的空白警告框?
$("#bottles a").livequery("click", function(event) {
thetitle=$(this).attr("title");
alert(thetitle);
return false;
});
对于加载的每个新 A 标记,ie7 都会提示一条空白消息(FF 正确显示相应的标题)。但是,当 thetitle= $(this).html() 时,ie7 会提示正确的信息。 我在这里错过了什么吗?
Can anyone figure out why this gives me blank alert boxes in ie7?
$("#bottles a").livequery("click", function(event) {
thetitle=$(this).attr("title");
alert(thetitle);
return false;
});
For each new A tag loaded, ie7 alerts a blank message (FF correctly shows the respective titles) However, when thetitle= $(this).html(), ie7 alerts the correct information. Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery 选择器和访问器对此来说太过分了。 你试过这个吗?
另外,您是否知道 jQuery 1.3.x 内置了 LiveQuery? 不再需要额外的插件。
The jQuery selector and accessor are overkill for that. Have you tried this?
On a separate note, did you know that jQuery 1.3.x has LiveQuery built in? No need for the additional plugin anymore.