gpt4 book ai didi

jquery - 仅当不存在时加载 jQuery 时出现问题

转载 作者:行者123 更新时间:2023-12-01 01:17:34 25 4
gpt4 key购买 nike

我正在使用代码from a blog ,这与 this SO question 的答案中的代码非常相似.

我的问题是代码将 jQuery 包含得很好,但由于某种原因,它后面的脚本无法识别 jQuery 已加载。我做错了什么?

I've placed the code in a jsFiddle.

if (!window.loadjQueryOnce)
{
function loadjQueryOnce(jQueryVersion)
{
jQueryVersion = typeof(jQueryVersion) != 'undefined' ? jQueryVersion : "1.7.2";

if (typeof jQuery === "undefined") {
var script_tag = document.createElement('script');
script_tag.setAttribute("type","text/javascript");
script_tag.setAttribute("src",
"http://ajax.googleapis.com/ajax/libs/jquery/" + jQueryVersion + "/jquery.min.js")
document.getElementsByTagName("head")[0].appendChild(script_tag);
}
}
}

最佳答案

问题是您在 HTML 中调用之前没有等待脚本执行。 See this example ,它使用您提到的博客中的代码。您需要将依赖 jQuery 的代码放在 main 函数中。

关于jquery - 仅当不存在时加载 jQuery 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10688374/

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