JavaScript學習筆記2–表單只提交一次

來源:互聯網
上載者:User
在Web頁面上提交表單的時候,可能使用者比較不耐煩,不停的點擊提交按鈕.對於這個問題,
簡單的情況可能是發送多次重複的請求,加重伺服器的負擔。如果是線上交易,有可能多
從信用卡裡扣錢。解決的方法很簡單,就是在使用者提交一次後,將提交按鈕禁用,看下面
的例子:

 

<html>
<head>
<title>使用者註冊</title>
</head>
<body>
<form name="form1" action=" ">
用 戶 名:<input type="text" name="txtName" size="20" /><br />
密    碼:<input type="password" name="txtPassword" size="20" /><br />
確認密碼:<input type="password" name="txtRePassword" size="20" /><br />
電子信箱:<input type="text" name="txtEmail" size="20" /><br />
<input type="submit" name="submitForm1" value="提交" 
onclick="this.disabled=true;this.form.submit()" /><br />
</form>
</html> 

 

onclick="this.disabled=true;this.form.submit()",表示當點擊“提交”按鈕後,通過將按
鈕的disabled特性設為true來禁用按鈕,然後通過this.form來引用當前的表單,也就是form1,
然後執行表單的submit()方法來提交表單。這裡需要注意的是提交按鈕的type屬性不能為submit
,如果把type屬性設為submit,然後通過onclick來禁用它,會導致表單不被提交。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.