jQuery attr('onclick')

发布于 2024-11-03 20:16:49 字数 244 浏览 0 评论 0原文

我试图更改 jQuery 中的“onclick”属性,但它没有改变,这是我的代码:

$('#stop').click(function() {
     $('next').attr('onclick','stopMoving()');
}

我有一个 id="stop" 的元素,当用户单击它时,我想更改元素上的 onclick 属性id=“下一个”。

如果有人知道解决方案在哪里,请帮忙!

I'am trying to change "onclick" attribute in jQuery but it doesn't change, here is my code:

$('#stop').click(function() {
     $('next').attr('onclick','stopMoving()');
}

I have an element with id="stop" and when user clicks on it I want to change an onclick attribute on element which has id="next".

If someone knows where is the solution please help!

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

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

发布评论

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

评论(4

溇涏 2024-11-10 20:16:49

以 jQuery 方式执行(并修复错误):

$('#stop').click(function() {
     $('#next').click(stopMoving);
     // ^-- missing #
});  // <-- missing );

如果元素已经通过 onclick 属性附加了一个 click 处理程序,则必须将其删除:

$('#next').attr('onclick', '');

更新: 正如 @Drackir 指出的,您可能还需要调用 $('#next').unbind('click'); 才能删除通过 jQuery 附加的其他点击处理程序。

但这是猜测。一如既往:更多信息 =>更好的答案。

Do it the jQuery way (and fix the errors):

$('#stop').click(function() {
     $('#next').click(stopMoving);
     // ^-- missing #
});  // <-- missing );

If the element already has a click handler attached via the onclick attribute, you have to remove it:

$('#next').attr('onclick', '');

Update: As @Drackir pointed out, you might also have to call $('#next').unbind('click'); in order to remove other click handlers attached via jQuery.

But this is guessing here. As always: More information => better answers.

往事风中埋 2024-11-10 20:16:49

正如@Richard 上面指出的,onClick 需要有一个大写的“C”。

$('#stop').click(function() {
     $('next').attr('onClick','stopMoving()');
}

As @Richard pointed out above, the onClick needs to have a capital 'C'.

$('#stop').click(function() {
     $('next').attr('onClick','stopMoving()');
}
风吹短裙飘 2024-11-10 20:16:49

最简单的方法是将 .attr() 函数更改为 javascript 函数 .setAttribute()

$('#stop').click(function() {
    $('next')[0].setAttribute('onclick','stopMoving()');
}

The easyest way is to change .attr() function to a javascript function .setAttribute()

$('#stop').click(function() {
    $('next')[0].setAttribute('onclick','stopMoving()');
}
┊风居住的梦幻卍 2024-11-10 20:16:49

Felix Kling 的方法会起作用(实际上比我先发制人),但我也建议使用

$('#next').die().live('click', stopMoving);$('#next').die().live('click', stopMoving);

如果多次单击元素时遇到问题和奇怪的行为,这可能是更好的方法。

Felix Kling's way will work, (actually beat me to the punch), but I was also going to suggest to use

$('#next').die().live('click', stopMoving);

this might be a better way to do it if you run into problems and strange behaviors when the element is clicked multiple times.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文