我對HTML按鈕標籤防止按鈕提交表單的onclick
這是我的HTML代碼
<form name="data_kirim" action="confirm_order.php" method="POST">
..... order input field ....
<button class="back_button" onclick="window.location.href='keranjang.php'">Back</button>
<input class="next_button" type="submit" name="submit_data_kirim" value="Next"/>
</form>
如何防止按鈕提交此表有問題,因爲按鈕是用在href背頁,
有人可以幫助我嗎?
讓儘可能'button',而不是'submit'類型。調用一個JS函數來做你需要的。 – Aashray
https://developer.mozilla.org/en-US/docs/Web/API/event.preventDefault –