删除克隆的 div

发布于 2024-12-19 08:57:46 字数 183 浏览 2 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(5

任性一次 2024-12-26 08:57:46
$( ".transactionsWrapper input:button" ).click( function() {
    $( this ).parent().remove();
} );
$( ".transactionsWrapper input:button" ).click( function() {
    $( this ).parent().remove();
} );
咽泪装欢 2024-12-26 08:57:46

这应该有效:

$('input:button[value="Delete"]').click(function() {
    $(this).closest('div.transactionsWrapper').remove();
});

This should work:

$('input:button[value="Delete"]').click(function() {
    $(this).closest('div.transactionsWrapper').remove();
});
满栀 2024-12-26 08:57:46
$(document).on('click', '.transactionsWrapper button', function(){
    $(this).parent().remove();
})
$(document).on('click', '.transactionsWrapper button', function(){
    $(this).parent().remove();
})
孤独难免 2024-12-26 08:57:46
$(".button").click(function(){
    if($(this).parent().hasClass("transactionsWrapper")){
        $(this).parent().remove();
    }
})
$(".button").click(function(){
    if($(this).parent().hasClass("transactionsWrapper")){
        $(this).parent().remove();
    }
})
笑梦风尘 2024-12-26 08:57:46

只是...删除输入的父级?

$('input[value=Delete]').on('click', function () {
    $(this).parent().remove();
});

编辑

嗯...如果您在分配事件侦听器之后添加克隆的

元素,那么这将不起作用。最安全的方法是使用委托:

$(document.body).on('click', 'input[value=Delete]', function () {
    $(this).parent().remove();
});

Just... delete the parent of the input?

$('input[value=Delete]').on('click', function () {
    $(this).parent().remove();
});

EDIT

Well... That won't work if you add cloned <div> elements after assigning the event listener. The safest way is to use delegation:

$(document.body).on('click', 'input[value=Delete]', function () {
    $(this).parent().remove();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文