<address id="ttjl9"></address>

      <noframes id="ttjl9"><address id="ttjl9"><nobr id="ttjl9"></nobr></address>
      <form id="ttjl9"></form>
        <em id="ttjl9"><span id="ttjl9"></span></em>
        <address id="ttjl9"></address>

          <noframes id="ttjl9"><form id="ttjl9"></form>

          JS基本事件總結

          2018-3-25    seo達人

          如果您想訂閱本博客內容,每天自動發到您的郵箱中, 請點這里

          概述

          JavaScript 創建動態頁面。事件是可以被 JavaScript 偵測到的行為。 網頁中的每個元素都可以產生某些可以觸發 JavaScript 函數或程序的事件。比如說,當用戶單擊按鈕或者提交表單數據時,就發生一個鼠標單擊(onclick)事件,需要瀏覽器做出處理,返回給用戶一個結果。主要事件表總結如下: 
          JS事件


          鼠標單擊事件( onclick )

          onclick是鼠標單擊事件,當在網頁上單擊鼠標時,就會發生該事件。同時onclick事件調用的程序塊就會被執行,通常與按鈕一起使用。 
          單擊按鈕時,觸發 onclick 事件,并調用兩個數和的函數add2()。代碼如下:

          <html> <head> <script type="text/javascript"> function add2(){ var numa,numb,sum;
                  numa=6;
                  numb=8;
                  sum=numa+numb;
                  document.write("兩數和為:"+sum);  } </script> </head> <body> <form> <input name="button" type="button" value="點擊提交" onclick="add2()" /> </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16
          • 17

          注意: 在網頁中,如使用事件,就在該元素中設置事件屬性。


          鼠標經過事件(onmouseover)

          鼠標經過事件,當鼠標移到一個對象上時,該對象就觸發onmouseover事件,并執行onmouseover事件調用的程序。鼠標經過”確定”按鈕時,觸發onmouseover事件,調用函數message(),彈出消息框,代碼如下:

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> 鼠標經過事件 </title> <script type="text/javascript"> function message(){ confirm("請輸入密碼后,再單擊確定!"); } </script> </head> <body> <form> 密碼:<input name="password" type="password" > <input name="確定" type="button" value="確定" onmouseover="message();"/> </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16
          • 17

          運行結果: 
          2


          鼠標移開事件(onmouseout)

          鼠標移開事件,當鼠標移開當前對象時,執行onmouseout調用的程序。當把鼠標移動到”登錄”按鈕上,然后再移開時,觸發onmouseout事件,調用函數message(),代碼如下:

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>鼠標移開事件 </title> <script type="text/javascript"> function message(){ alert("百度一下,你就知道!"); } </script> </head> <body> <form> <a href="http://www.baidu.com" onmouseout="message()">點擊我</a> </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16

          運行結果: 
          3


          光標聚焦事件(onfocus)

          當網頁中的對象獲得聚點時,執行onfocus調用的程序就會被執行。 
          如下代碼, 當將光標移到文本框內時,即焦點在文本框內,觸發onfocus 事件,并調用函數message()。

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> 光標聚焦事件 </title> <script type="text/javascript"> function message(){ alert("請選擇,您現在的職業!");
              } </script> </head> <body> <form onfocus="message()"> <input type="text" onfocus="message()">輸入</input> </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16
          • 17

          運行結果: 
          4


          失焦事件(onblur)

          onblur事件與onfocus是相對事件,當光標離開當前獲得聚焦對象的時候,觸發onblur事件,同時執行被調用的程序。如下代碼, 網頁中有用戶和密碼兩個文本框。當前光標在用戶文本框內時(即焦點在文本框),在光標離開該文本框后(即失焦時),觸發onblur事件,并調用函數message()。

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 失焦事件 </title> <script type="text/javascript"> function message(){ alert("請記得輸入密碼!"); } </script> </head> <body> <form> 用戶:<input name="username" type="text" value="請輸入用戶名!" onblur="message()" > 密碼:<input name="password" type="text" value="請輸入密碼!" > </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16
          • 17

          運行結果: 
          5


          內容選中事件(onselect)

          選中事件,當文本框或者文本域中的文字被選中時,觸發onselect事件,同時調用的程序就會被執行。如下代碼,當選中用戶文本框內的文字時,觸發onselect 事件,并調用函數message()。

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 內容選中事件 </title> <script type="text/javascript"> function message(){ alert("您觸發了選中事件!"); } </script> </head> <body> <form> 個人簡介:<br> <textarea name="summary" cols="60" rows="5" onselect="message()">請寫入個人簡介,不少于200字!</textarea> </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16
          • 17

          運行結果: 
          321


          文本框內容改變事件(onchange)

          通過改變文本框的內容來觸發onchange事件,同時執行被調用的程序。 
          如下代碼,當用戶將文本框內的文字改變后,彈出對話框“您改變了文本內容!”

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 文本框內容改變事件 </title> <script type="text/javascript"> function message(){ alert("您改變了文本內容!"); } </script> </head> <body> <form> 個人簡介:<br> <textarea name="summary" cols="60" rows="5" onchange="message()">請寫入個人簡介,不少于200字!</textarea> </form> </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14
          • 15
          • 16
          • 17

          運行結果: 
          2321


          加載事件(onload)

          事件會在頁面加載完成后,立即發生,同時執行被調用的程序。注意:

          • 加載頁面時,觸發onload事件,事件寫在標簽內。
          • 此節的加載頁面,可理解為打開一個新頁面時。

          如下代碼,當加載一個新頁面時,彈出對話框“加載中,請稍等…”。

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 加載事件 </title> <script type="text/javascript"> function message(){ alert("加載中,請稍等…"); } </script> </head> <body onload="message()"> 歡迎學習JavaScript。 </body> </html>
              
          • 1
          • 2
          • 3
          • 4
          • 5
          • 6
          • 7
          • 8
          • 9
          • 10
          • 11
          • 12
          • 13
          • 14

          運行結果: 
          432


          卸載事件(onunload)

          當用戶退出頁面時(頁面關閉、頁面刷新等),觸發onUnload事件,同時執行被調用的程序。注意:不同瀏覽器對onunload事件支持不同。如下代碼,當退出頁面時,彈出對話框“您確定離開該網頁嗎?”。

          <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 卸載事件 </title> <script type="text/javascript"> window.onunload = message; function message(){ alert("您確定離開該網頁嗎?");   
              } </script> </head> <body onunload="message()"> 歡迎學習JavaScript。 </body> </html>
          藍藍設計www.syprn.cn )是一家專注而深入的界面設計公司,為期望卓越的國內外企業提供卓越的UI界面設計、BS界面設計 、 cs界面設計 、 ipad界面設計 、 包裝設計 、 圖標定制 、 用戶體驗 、交互設計、 網站建設 平面設計服務


          日歷

          鏈接

          個人資料

          藍藍設計的小編 http://www.syprn.cn

          存檔

          亚洲va欧美va天堂v国产综合