DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js實現表單多按鈕提交action的處理方法
js實現表單多按鈕提交action的處理方法
編輯:關於JavaScript     

之前一篇文章介紹了php實現表單多按鈕提交action的處理方法,今天再介紹一種js實現表單多按鈕提交action的處理方法,希望能夠幫助到大家。

用JS實現一個表單多個按鈕的方法,兩個onclick事件處理,代碼如下:

<html>  
<head>  
<script>  
  function submitit1()  
  //交由程序1處理    
  {  
    document.myForm.action = "http://www.site.com/cgi1.php"  
    document.myForm.submit();  
  }  
  function submitit2()  
  //交由程序2處理    
  {  
    document.myForm.action = "http://www.site.com/cgi2.php"  
    document.myForm.submit();  
  }  
</script>  
</head>  
  
<body>  
<form name="myForm" METHOD=POST>  
  username:<input type=text name=text1>  
  password:<input type=password name=text2>  
  <input type=button value="Submit1" onClick=submitit1();>  
  <input type=button value="Submit2" onClick=submitit2();>  
</form>  
</body>  
</html> 

大家可以結合前一篇《php實現表單多按鈕提交action的處理方法》一起學習,可能效果會更好。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved