gpt4 book ai didi

javascript - onclick 删除影响其他按钮

转载 作者:行者123 更新时间:2023-12-03 10:33:53 24 4
gpt4 key购买 nike

我有删除按钮的功能(根据我点击的内容进行删除)并且它正在工作,但是当我点击其他按钮时它会执行删除功能不应该这样做。如何防止影响其他按钮?

function myDelete()
{
$(document).on('click', '.item', function(){
$(this).remove();
var sum = 0;
});
}

最佳答案

您最好将“click”事件绑定(bind)到特定的 dom 对象,而不是文档对象。

请尝试此代码:

function myDelete()
{
$('.item').on('click', function(){
$(this).remove();
var sum = 0;
});
}

另外,在我看来,你必须将其包装在一个函数中,这看起来很奇怪。在大多数情况下,一个简单的包装器(相当于“on dom load”)就足够了:

$(function(){
// you code here such as :
$('.item').on('click', function(){
$(this).remove();
var sum = 0;
});
});

关于javascript - onclick 删除影响其他按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29091145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com