我要問哪種做法更好/更快(在加載時間計算)的JavaScript像http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js從http或包含文件夾的jQuery鏈接?
我在我的網頁上面的腳本是這樣的:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
是它會將它下載到我的web文件夾並將其鏈接到本地?
<script type="text/javascript" src="jquery.min.js"></script>
這個舉動會影響加載時間嗎?這是更好的html編碼嗎?
謝謝!
最安全的方式可能是這樣的:http://stackoverflow.com/questions/1014203/best-way-to-use-googles-hosted-jquery-but-fall-back-to-my-hosted-library-去吧 – kimpettersen