<form action="xxx.html" method="post" name="form1" onsubmit="return XXX();">
.........
<input name="submit" type="submit">
</form>
發現按下按鈕並不會觸發 onsubmit 中所寫的事件,
必須要 form.onsubmit();
form.submit();
form.onsubmit(); // 使用form的onsubmit方法
form.fireEvent('onsubmit'); //同上
沒有留言:
發佈留言