DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 最新jQuery引用google地址外部文件(jquery 1.2.6至jquery1.7.2)
最新jQuery引用google地址外部文件(jquery 1.2.6至jquery1.7.2)
編輯:JQuery特效代碼     
1. 很多網站都是使用這種方式引入,客戶的浏覽器可能已經緩存過了 jquery。可以直接調用本地的,速度更快…
2. Google code 使用了 cdn 技術在很多地方有節點服務器,加載 jquery 時絕對不會比在你服務器上加載慢,本地服務器除外 : )
3. 可以節省服務器流量,降低服務器帶寬壓力

可以使用兩種方式引用 google code 的jquery
一、引用 http://www.google.com/jsapi?key=Goolge 密鑰
<script type="text/javascript">
google.load("jquery", "1.4.2");
</script>

二、直接引用地址http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js


jQuery 1.2.6 引用文件
代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>

google jQuery 1.3.2引用文件
代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>

google jQuery 1.4.2引用文件
代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

google jQuery 1.5.2引用文件
代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script>

 

google jQuery 1.6.2引用文件

代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>

 

google jQuery 1.6.4引用文件

代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>

 

google jQuery 1.7引用文件

代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js" type="text/javascript"></script>

 

google jQuery 1.7.1引用文件

代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>

 

google jQuery 1.7.2引用文件

代碼如下:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>

 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved