gpt4 book ai didi

javascript - Woocommerce 空购物车按钮。 "Are you sure?"

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

我已将 [空购物车] 按钮添加到我的 Woocommerce 购物车页面。

太棒了。

我想添加一个弹出窗口来询问用户“您确定吗?”

万一他们购物了两个小时,然后错误地点击了这个按钮。

我认为这是自定义 JavaScript。

让我们假设该按钮的 ID 为 myButton

最佳答案

鉴于您在评论中的标记,请尝试以下操作:

document.getElementsByName("empty_cart")[0].onclick = function(e) {
var choice = confirm("Are You Sure ?");
if (!choice) {
//Cancel submit
e.preventDefault();
}
};
<form method="post" action="#">
<input class="button" type="submit" value="Empty Cart" name="empty_cart">
</form>

您正在使用getElementByNamefuction ;两者都不存在。为了更容易发现此类小错误,请在处理 Javascript 时在浏览器的开发人员工具中打开控制台选项卡。它吐出TypeError: Object #<HTMLDocument> has no method 'getElementByName' .

关于javascript - Woocommerce 空购物车按钮。 "Are you sure?",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29010548/

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