一個(gè)表單中如何實(shí)現(xiàn)多個(gè)按鈕提交的方法代碼
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
我們有時(shí)在制作網(wǎng)頁(yè)過(guò)程中,可能需要實(shí)現(xiàn)在一個(gè)表單中提交多個(gè)按鈕,來(lái)實(shí)現(xiàn)一個(gè)表單提交到多個(gè)處理頁(yè)面,進(jìn)行不同的處理。具體請(qǐng)看下面的代碼。 01.<script type="text/javacript" language="javascript"> 02.function Button1(){ 03.document.formName.action="1.htm"; 04.formName.submit(); 05.} 06.function Button2(){ 07.document.formName.action="2.htm"; 08.formName.submit(); 09.} 10.</script> 11.<html> 12.<body> 13.<form name="formName" action="#"> 14. <input name="button1" id="button1" value="按鈕1" onclick="Button1()"/> 15. <input name="button2" id="button2" value="按鈕2" onclick="Button2()"/> 16.</form> 17.</body> 18.</html> 該文章在 2011/6/22 14:45:20 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |