jsp——學習篇:簡單使用JavaScript

來源:互聯網
上載者:User

標籤:

  JavaScript是一種網頁的指令碼程式設計語言,支援用戶端與伺服器的應用程式以及構件的開發!它是一種解釋性語言,需編譯後才可以運行!

  具體的文法就不在這裡說明啦!JavaScript在網頁中的使用有兩種方式:直接加入網頁中和引用方式!我只是簡單的使用,平時就用第一種直接加入網頁的方式!

  下面是簡單的使用JavaScript檢查頁面表單的輸入是否為空白及效果代碼圖:

 1 <html> 2 <head> 3 </head> 4 <body> 5 <script language = "JavaScript"> 6 function CheckForm(){ 7 if (document.myForm.username.value == "") { 8     alert("請輸入標題!!!"); 9     document.myform.title.focus();10     return false;11 }12 return true;13 }14 </script>15 <h1 align = "center">登入介面</h1>16 <hr>17 <center>18 <form name = "myForm" action="#" method="post" onSubmit = "return CheckForm()">19 使用者名稱:<input name = "username" type = "Text" /><br>20 密&nbsp;碼:<input name = "password" type = "password"/><br>21 <input value = "登入" type = "submit" />22 <input value = "註冊" type = "submit" /><br>23 </center>24 </body>25 </html>

  這裡只是簡單的使用與入門,大家感興趣可以深入地去學習哈!!!

jsp——學習篇:簡單使用JavaScript

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.