页面加载后添加的项目上的 Jquery UI 按钮
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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'sappend()
to do it?Using
live
and thenappend
should work just fine, it's pretty much the most basic example of how to uselive
, so something else is going on here.