2015-12-01 37 views

回答

0

對於當地環境檢測本地分開,在本地計算機和參考下載JS文件和地點吧。

樣品:

<script type="text/javascript" src="PATH_TO_YOUR_JS_FILE.JS"></script> 
0

您將需要一個互聯網連接來下載文件jQuery的一次。 http://jquery.com/download/

然後在你的html中包含一個到本地jquery.js文件的路徑。 例如如果您將文件放在文件夾「內容」中,它將如下所示。

<script src="/Content/jquery.min.js"></script> 
3

下載js文件保存在本地,然後如果你的cdn加載失敗,你可以使用本機回退到本地版本。

防爆

<script src="//ajax.aspnetcdn.com/ajax/jquery/jquery-2.0.0.min.js"></script> 
<script>window.jQuery || document.write('<script src="localpathhere/jquery-2.0.0.min.js">\x3C/script>')</script> 
<!--The second line of code checks whether jquery has been loaded correctly else it will 
write a new script where local file gets referred--> 
0

只需執行以下步驟:從CDN本身

  • 下載js文件具有相同的名稱。
  • 將該文件放置在您的文件夾中。
  • 寫下<script>標籤的方式。

    <script type ="text/javascript" src="Jquery/jquery.min.js"></script>