页面加载后添加的项目上的 Jquery UI 按钮

发布于 2024-09-19 01:55:48 字数 418 浏览 4 评论 0原文

我有 jquery ui 按钮小部件使用以下代码工作。

 $(.remove_img).button({
  icons: {
   primary: 'ui-icon-cancel'
  }
  });

但如果没有图像,在上传时,我会附加一个带有 .remove_img 类的按钮,因此它不在页面加载时的 DOM 中。有没有办法获得它,以便添加的按钮仍会触发相同的 .button 代码?

我尝试过

$('.remove_img').live('click', function(event){
 $(this).button({
  icons: {
   primary: 'ui-icon-cancel'
  }
  });
 });

,但它没有让我有任何进展。

i have the jquery ui button widget working w/ the following code.

 $(.remove_img).button({
  icons: {
   primary: 'ui-icon-cancel'
  }
  });

but if there isn't an image in place, on upload, i am appending a button with class .remove_img, so it isn't in the DOM on page load. is there a way to get it so that the added button will still trigger the same .button code?

i tried

$('.remove_img').live('click', function(event){
 $(this).button({
  icons: {
   primary: 'ui-icon-cancel'
  }
  });
 });

but it didn't get me anywhere.

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

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

发布评论

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

评论(1

疑心病 2024-09-26 01:55:48

live() 应该正是您所需要的。您可以在回调中做一些非常简单的事情来验证它是否被绑定吗?稍后如何生成元素?您是否使用 jQuery 的 append() 来执行此操作?

使用 live 然后使用 append 应该可以正常工作,这几乎是如何使用 live 的最基本示例,所以还有其他事情发生这里。

live() should be exactly what you need. Can you do something very simple in the callback to verify whether it is getting bound or not? How are you generating the elements later? Are you using jQuery's append() to do it?

Using live and then append should work just fine, it's pretty much the most basic example of how to use live, so something else is going on here.

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