3 回答

TA貢獻(xiàn)1847條經(jīng)驗(yàn) 獲得超11個(gè)贊
方式1:你可以使用這個(gè):
<button name="remove" onclick="return confirm('Are you sure?')" style="margin-left: -15%; border-radius: 15px;" class="button button2">Remove</button>
這return是非常重要的
方式2:
function myFunction() {
if (confirm('Are you sure?')) {
//Do SomeThing...!
}
}

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊
您需要驗(yàn)證確認(rèn)響應(yīng)
function myFunction() {
if (confirm("Do you want to remove?!")) {
//do stufff here...
console.log('success')
} else {
console.log('cancel')
}
}
<button name="remove" onclick="myFunction()"class="button button2">Remove</button>

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超6個(gè)贊
確保你做 preventDefault 因?yàn)槟愕膭h除按鈕在表單內(nèi)
document.getElementById("uniqueId").addEventListener("click", function(event){
event.preventDefault();
if(confirm("Msg")){
//do something
}
});
<form method="post">
<button name="remove" id="uniqueId" style=" border-radius: 15px;" class="button button2">Remove</button>
</form>
確保每個(gè)按鈕都有唯一的 id
- 3 回答
- 0 關(guān)注
- 108 瀏覽
添加回答
舉報(bào)