安裝 jQuery
The following examples had been tested on Mozilla's Firefox and Microsoft's IE. The document is provided as is. You are welcomed to use it for non-commercial purpose.Written by: 國立中興大學資管系呂瑞麟 Eric Jui-Lin Lu
請勿轉貼
安裝 jQuery 的簡單程度可能超過你的想像;由於 jQuery 是由一堆的 Javascript 所組成,所以安裝的方式就是把 jQuery 的 js 檔下載下來並置放於適當的 目錄下即可:
- 請到 jQuery 下載區 的 "Current Release" 下載,其中 "Minified" 和 "Uncompressed" 連結的內容都完全相同,只是 "Minified" 的版本是經過壓縮的檔案,它的好處在於 壓縮過後的檔案比較小,可以降低網路傳輸時間。雖然 "Minified" 版本降低了 網路傳輸時間,但是瀏覽器卻需要多餘的 CPU 時間對該檔案進行解壓縮;由於 網路的傳輸時間往往是整體執行時間的瓶頸,因此個人建議使用 "Minified"。
- 以版本 1.7.2 為例,下載的檔案名稱是 jquery-1.7.2.min.js,個人建議將檔案 重新命名為 jquery.min.js;這樣做的好處是未來要升級到其他版本時,只需要把 檔案再次下載,並重新命名為 jquery.min.js 即完成升級,你所寫的程式完成不必 修改。
- 請在放置 jquery.min.js 的目錄新增一個網頁,並在該網頁的 <head>
標籤內加入如下的語法:
<script type="text/javascript" src="jquery.min.js"></script>
- 請在網頁的適當位置定義如下的按鈕(button)以及 <div> 標籤,其
ID 分別為 but 和 block1。按鈕在預設的情形下是不會顯示的(因為
style="display:none"),而且如果使用者點選它的時候,display() 會被執行。
<button id="but" type="button" onClick="display()" style="display:none">請點我</button> <div id="block1"> </div>
- 請在前項的的 <script> 標籤下,再加上下列 <script> 標籤:
<script type="text/javascript"> // 如果檔案載入完成,將按鈕顯示出來 $(document).ready(function() { $("#but").css("display", "block"); }); // 使用者點選按鈕之後,顯示訊息 function display() { $("#block1").html("jQuery running"); } </script>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
Written by: 國立中興大學資管系呂瑞麟 Eric Jui-Lin Lu
沒有留言:
張貼留言