Changes between Version 1 and Version 2 of jazz/08-10-18/jQuery


Ignore:
Timestamp:
Oct 18, 2008, 6:05:34 PM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/08-10-18/jQuery

    v1 v2  
    11= 2008-10-18 =
    22
    3  * 使用 jQuery 當然就要先下載 jQuery 的 js 檔 - [http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js 1.2.6 版]
    4  * 第二種方法:直接嵌入 Google AJAX API 維護的網址 [http://code.google.com/apis/ajaxlibs/documentation/index.html#AjaxLibraries 詳細清單]
     3 * 使用 jQuery 當然就要先取得 javascript 檔案囉~
     4   * 第一種方法:下載 jQuery 的 js 檔 - [http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js 1.2.6 版]
     5   * 第二種方法:直接嵌入 Google AJAX API 維護的網址 [http://code.google.com/apis/ajaxlibs/documentation/index.html#AjaxLibraries 詳細清單]
    56{{{
    67<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
    78}}}
     9   * 第三種方法:使用 Google AJAX API 的語法 - 先決條件是先取得 Google API Key
     10{{{
     11google.load("jquery", "1.2.6");
     12}}}