blogspot.com-GA4

星期五, 1月 18, 2008

submit()和onsubmit()

<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'); //同上

沒有留言: