onsubmit 事件:在表單中的確認按鈕被點擊時發生。
<form name="testform" action="jsref_onsubmit.asp" onsubmit="alert('Hello ' + testform.fname.value +'!')"> What is your name?<br /> <input type="text" name="fname" /> <input type="submit" value="Submit" /> </form> /* ASP是動態服務器頁面(Active Server Pages)的英文縮寫,後來也稱爲經典ASP, 是微軟公司開發的代替CGI腳本程序的一種應用,也是微軟公司的第一個服務器側的腳本引擎, 可以動態產生Web頁面。ASP能夠與Web數據庫以及其它程序進行交互, 是一種簡單、方便的編程工具。ASP的網頁文件的格式是.asp, 曾用於各類動態網站中。2002年1月微軟發佈ASP.NET,用於取代ASP。 */
來源:http://www.w3school.com.cn/jsref/event_onsubmit.asp?javascript
——————————————————————————html
name 屬性規定表單的名稱。java
form 元素的 name 屬性提供了一種在腳本中引用表單的方法。數據庫
<html> <head> <script type="text/javascript"> function formSubmit() { document.forms["myForm"].submit(); } </script> </head> <body> <form name="myForm" action="/example/html/form_action.asp" method="get"> First name: <input type="text" name="fname" /><br /> Last name: <input type="text" name="lname" /><br /> <input type="button" onclick="formSubmit()" value="Send form data!" /> </form> <p>請單擊確認按鈕,輸入會發送到服務器上名爲 "form_action.asp" 的頁面。</p> </body> </html>
來源: http://www.w3school.com.cn/tags/att_form_name.asp編程