1 ping測(cè)試第3方j(luò)Query庫
WordPress附帶了jQuery庫,但它自己的jQuery庫略有修改。
如果你學(xué)習(xí)建站使用它,你可能無法實(shí)現(xiàn)一些jQuery效果。
一個(gè)jQuery庫通常是50-90kb大,如果你的主機(jī)性能不高的,那么你的網(wǎng)站加載很慢。
因此,很多網(wǎng)絡(luò)營銷人習(xí)慣于使用第三方j(luò)Query庫:
以下是jQuery官方j(luò)Query庫,以及Google,Microsoft,Sina SAE和minicd的四個(gè)第三方j(luò)Query庫的介紹。
這些是常見的CDN分發(fā)網(wǎng)絡(luò)服務(wù),選擇后非常快,對(duì)SEO有利。
以下是網(wǎng)站管理員工具中,ping測(cè)試結(jié)果的比較:
在你使用之前,需要解釋清楚:
如下:
因此你必須首先下載相應(yīng)的jQuery庫,并將其上載到你正在使用的WordPress主題的根目錄。
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/jquery.min.js">\x3C/script>')</script>
許多網(wǎng)站使用Google CDN提供的jQuery庫。
但是,由于某些問題,中國網(wǎng)民可能無法在一段時(shí)間內(nèi)訪問它。
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/jquery.min.js">\x3C/script>')</script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js"></script> <script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/jquery.min.js">\x3C/script>')</script>
雖然官方聲稱使用多方CDN,包括國內(nèi)采用的盛大云CDN加速。
<script type="text/javascript" src="http://c1.minicdn.com/google/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/jquery.min.js">\x3C/script>')</script>
點(diǎn)此訪問 jQuery官網(wǎng) 下載jQuery庫
希望我們網(wǎng)站( https://www.wordpressx.com/ ) 分享的《怎么下載jQuery庫?WordPress引入第3方j(luò)Query庫》,對(duì)您有幫助。