我想添加一個JavaScript警報到我的表單,我遇到的問題是,當用戶點擊取消,表單仍然被提交?Javascript取消按鈕提交表格
在腦子裏,我有:
<head>
<script type="text/javascript">
function confirmDelete() {if(confirm('Are you sure you want to delete this category ?'))
alert('Category Deleted !');
else alert('Cancelled !')}
</script>
</head>
我的鏈接使用下列內容:
a onClick="confirmDelete()"
林不知道爲什麼點擊取消還是提交它?是它可以顯示已取消!持續2秒,然後關閉?
這應該對你有幫助:http://stackoverflow.com/questions/932653/how-to-prevent-buttons-from-submitting-forms – pabrantes