gpt4 book ai didi

javascript按钮点击功能不起作用

转载 作者:行者123 更新时间:2023-12-01 02:06:11 25 4
gpt4 key购买 nike

我有一个网站,用户可以在其中选择一个项目,然后显示详细信息,包括数量。我还在 div 中添加了一个按钮,这样当单击时,数量就会减少 1。

        $("#btnBuy1").click(function()
{
if (!sessionStorage['quantity1'])
{
sessionStorage['quantity1']=1;

}
else
{
sessionStorage['quantity1']++;
}
$("#dropbox").html('<div id = "1"><img class = "thumb" id = "t1" src="../images/birthday_metoyou.jpg" />' + teddy[1].desc + ", Price £"
+ teddy[1].price + ", Quantity: " + sessionStorage.getItem('quantity1') + "<button id = 'btnRemove1'>Remove</button></div><br/>");
updateBasket();
sessionStorage["total1"] = parseInt(sessionStorage.getItem('quantity1')) * teddy[1].price;
updateSubtotal();
if (Modernizr.sessionstorage)
{ // check if the browser supports sessionStorage
myids.push(teddy[1].partnum); // add the current username to the myids array
sessionStorage["ids"]=JSON.stringify(myids); // convert it to a string and put into sessionStorage
}
else
{
// use cookies instead of sessionStorage
}
});

$("#btnRemove1").click(function()
{
alert(remove);
});

我输入了一条警报消息来查看该按钮是否正常工作,但是当我单击 btnRemove1 按钮时,没有任何反应。

最佳答案

既然按钮是动态添加的,你可以试试:

$(document).on('click', '#btnRemove1', function() {
{
alert("remove"); //I dont know what remove was is the example, added quotes around it.
});

关于javascript按钮点击功能不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15665656/

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