删除克隆的 div
<div class="transactionsWrapper">
<input type="button" value="Delete" />
</div>
如果我克隆上面的 div 5 次,那么根据单击的删除按钮删除 div 的 jquery 代码是什么?
<div class="transactionsWrapper">
<input type="button" value="Delete" />
</div>
If I cloned the div above let's say 5 times, what's the jquery code to delete the div based on which delete button was clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这应该有效:
This should work:
只是...删除输入的父级?
编辑
嗯...如果您在分配事件侦听器之后添加克隆的
元素,那么这将不起作用。最安全的方法是使用委托:
Just... delete the parent of the input?
EDIT
Well... That won't work if you add cloned
<div>
elements after assigning the event listener. The safest way is to use delegation: