gpt4 book ai didi

javascript - 当用户点击 html 按钮时避免回发

转载 作者:行者123 更新时间:2023-12-03 12:40:45 27 4
gpt4 key购买 nike

我想避免在用户单击 html 按钮时回发。因为我想使用 javascript 显示一个弹出窗口。我不想在单击按钮时回发。

function ShowEditChoicesPopup() {
// I want to show some pop up here.
$("popupdiv").show();
return false;
}

我使用的标记是:

<button onclick="javascript:ShowEditChoicesPopup();"> Edit Choices </button>

请提出一些想法。

最佳答案

应用event.preventDefault();

 function ShowEditChoicesPopup(event) {
event.preventDefault();

$("popupdiv").show();

}

关于javascript - 当用户点击 html 按钮时避免回发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23537632/

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