添加时操作 jquery 模板
我的情况类似于可排序演示: http://jqueryui.com/demos/sortable/ ,除了项目是使用 jquery 模板动态添加的。我想让它们可排序和可拖动,但我似乎无法以通常的方式做到这一点。唯一有点相似的解决方案是使用 .live() 将其连接起来,但在添加(或删除)模板时似乎没有合适的事件可以订阅。
I have a situation similar to the sortable demo: http://jqueryui.com/demos/sortable/ , except the items are dynamically added with a jquery template. I'd like to make them sortable and draggable, but I can't seem to do that the usual way. The only solution that's vaguely similar is to hook it up using .live(), but there doesn't seem to be an appropriate event to subscribe to when a template is added (or removed).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用
.delegate()
?在许多方面,它优于.live()
http://api.jquery .com/delegate/
Have you tried using
.delegate()
? In many ways, it is superior to.live()
http://api.jquery.com/delegate/