我在我的网页中使用google CDN for jQuery和prototypeJS库。出于任何原因,如果没有加载这些库,我可以采取什么措施,以便我的页面正常运行。
我在SO
中找到了这个链接Best way to use Google's hosted jQuery, but fall back to my hosted library on Google fail
这与我的问题非常相似。
很抱歉,问过已经问过的事情。
答案 0 :(得分:2)
答案 1 :(得分:1)
if (typeof jQuery == 'undefined')) {
// Insert your local copy
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'to/local/copy/jquery.js';
var scriptHook = document.getElementsByTagName('script')[0];
scriptHook.parentNode.insertBefore(script, scriptHook);
}