gpt4 book ai didi

javascript - 如何检查 ajax.googleapis.com 是否被阻止并使用我的 jquery 托管?

转载 作者:行者123 更新时间:2023-11-29 15:53:34 24 4
gpt4 key购买 nike

我使用 http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js但是一些公司可能会阻止这个网站,所以在这种情况下我想在 jquery 上使用我的本地版本/JavaScripts/jquery.min.js。我该怎么做?

最佳答案

if(typeof(jQuery) === 'undefined'){             
var scr = document.createElement('script');
scr.setAttribute('type', 'text/javascript');
scr.setAttribute('src', 'http://yourdomain/jquery.min.js');

document.getElementsByTagName('head')[0].appendChild(scr);
setTimeout(function(){
// $(document).ready(); here for instance
}, 3000);

关于javascript - 如何检查 ajax.googleapis.com 是否被阻止并使用我的 jquery 托管?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2743850/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com