jQuery語法結構講解

【此處介紹jQuery的語法結構】

要想在咱們設計的頁面當中支持jQuery,咱們須要作以下幾步:

◎ 加載jQuery類包;javascript

            <script  type="text/javascript" src="jQuery類包的URL"></script>html

◎ 編輯jQuery。java

           <script  type="text/javascript">jquery

                    $(document).ready(function(){ide

                          代碼塊……spa

                    });設計

           </script>htm

 

◎看以下一個簡單的例子ip

<html>      <head>             <title>test</title>             <script type="text/javascript" src="jquery-1.4.2.js"></script>             <script type="text/javascript">                   $(document).ready(function(){                         alert("您好!");                   });             </script>      </head> <body></body> </html>
相關文章
相關標籤/搜索