jQuery 点击函数找不到选择器

发布于 2024-12-05 06:55:56 字数 326 浏览 0 评论 0原文

a = new object();
a.loadInterface();

$("button").click(function() {
    a.doSomething();
});

问题是 a.loadInterface() 是将按钮加载到 DOM 中的,它发生在 $.post() 的末尾,因为来自服务器的数据需要填充按钮的某些属性。

所以我认为正在发生的事情是,JavaScript 读取 button.click 检测器,但当时没有按钮可供它绑定。

有什么想法吗?

a = new object();
a.loadInterface();

$("button").click(function() {
    a.doSomething();
});

The problem is that a.loadInterface() is what loads the button into the DOM, and it happens at the end of a $.post() because data from the server is needed to populate some attributes of the button.

So what I think is going on is, JavaScript reads the button.click detector but at that time there is no button for it to bind to.

Any ideas?

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

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

发布评论

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

评论(2

肤浅与狂妄 2024-12-12 06:55:56

您对问题的评估是正确的。一个简单的解决方案是使用delegate。例如,

$(document).delegate('button', 'click', function() {
    a.doSomething();
});


Edit: more info on delegate and why it works on dynamically created elements after event binding can be found here: http://api.jquery.com/delegate/

Your assessment of the problem is correct. A simple solution would be to use delegate. E.g.,

$(document).delegate('button', 'click', function() {
    a.doSomething();
});


Edit: more info on delegate and why it works on dynamically created elements after event binding can be found here: http://api.jquery.com/delegate/

别念他 2024-12-12 06:55:56

我认为你是对的。如果要根据帖子返回的数据创建按钮,则需要在帖子成功后执行的方法中绑定事件。

I think you are right. If you are creating button in based on the data returned from the post, you'll need to bind event in the method that is executed after the success of the post.

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