jQuery Live 不更新属性 Dom

发布于 2024-12-01 17:10:57 字数 316 浏览 1 评论 0原文

我在获取标题属性时遇到问题。

$('.copy_button').livequery(function(event){
    $(this).zclip({
        path:'http://togl.me/tema/flash/ZeroClipboard.swf',
        copy: $(this).attr("title")
    });
});

livequery 函数正在工作,但我无法让 attr('title') 工作。

我该如何解决这个问题?

I have a problem about getting title attribute..

$('.copy_button').livequery(function(event){
    $(this).zclip({
        path:'http://togl.me/tema/flash/ZeroClipboard.swf',
        copy: $(this).attr("title")
    });
});

The livequery function is working but I can't get attr('title') to work.

How can I solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

入画浅相思 2024-12-08 17:10:57

有时,$(this) 的范围可能会根据您在方法中所处的位置而变化。当您开始深入了解时,$(this) 可以引用当前范围内的内容,而不是首先发生的事件。

尝试这样做并告诉我它是否有效:

$('.copy_button').livequery(function(event){
    var title = $(this).attr('title');
    $(this).zclip({
        path:'http://togl.me/tema/flash/ZeroClipboard.swf',
        copy: title
    });
});

Sometimes, the scope of $(this) can change based on where you're at in your method. As you start getting deeper, $(this) can refer to what's currently in scope, instead of what was evented in the first place.

Try doing this and tell me if it works:

$('.copy_button').livequery(function(event){
    var title = $(this).attr('title');
    $(this).zclip({
        path:'http://togl.me/tema/flash/ZeroClipboard.swf',
        copy: title
    });
});
烧了回忆取暖 2024-12-08 17:10:57

您可以尝试以下代码:

$('.copy_button').livequery(function(event){
    $(this).zclip({
        path:'http://togl.me/tema/flash/ZeroClipboard.swf',
        copy: this.attr("title")
    });
});

You can try the following code:

$('.copy_button').livequery(function(event){
    $(this).zclip({
        path:'http://togl.me/tema/flash/ZeroClipboard.swf',
        copy: this.attr("title")
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文