我正在制作一个小部件,其中包含一段代码,以放入您的网站,然后通过 js 拉入内容。这是一个示例片段:
<div data-token="bc1cea6304e8" id="my-widget">
<script src="http://localhost:8080/assets/eg-widget.js" type="text/javascript"></script>
</div>
我正在做一个测试来检查页面是否已经有 jQuery,如果有,版本至少是 1.5。
if (typeof jQuery == 'undefined' || isVersion("1.5", ">")) {
var script_tag = document.createElement('script');
script_tag.setAttribute("type", "text/javascript");
script_tag.setAttribute("src",
"http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js");
// Try to find the head, otherwise default to the documentElement
(document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
if (script_tag.readyState) {
script_tag.onreadystatechange = function () { // For old versions of IE
if (this.readyState == 'complete' || this.readyState == 'loaded') {
scriptLoadHandler();
}
};
} else { // Other browsers
script_tag.onload = scriptLoadHandler;
}
} else {
// The jQuery version on the window is the one we want to use
jQueryEg = window.jQuery;
scriptLoadHandler();
}
在任何一种情况下,我们都将变量 jQueryEg 设置为我们决定使用的 jQuery,这样我们就可以避免冲突。
如果 jQuery 尚未加载,那么一切都是花花公子。但是如果加载了旧版本,我们在尝试加载其他库(如 jQuery-ui)时会遇到冲突。
为此,我们将 window.jQuery 设置为新加载的 jQuery,以便在加载 jquery-ui 和 bootstrap.js 时,它们对 window.jQuery 或 $ 的引用指向正确的版本。
问题是有时页面的其他部分在我们将 window.jQuery 设置为我们的版本的同时调用 jQuery,这会导致问题。
关于我们如何避免这些冲突的任何想法?
jQueryEg = window.jQuery.noConflict(true);
window.jQueryEg = jQueryEg;
// jquery-ui reference window.jQuery so we need to set that to our new jquery for a sec
if (jQueryEg.ui == undefined || jQueryEg.ui.datepicker == undefined) {
var otherjQuery = window.jQuery;
window.jQuery = jQueryEg;
var script_tag = document.createElement('script');
script_tag.setAttribute("type", "text/javascript");
script_tag.setAttribute("src",
"//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js");
(document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
script_tag.onload = function () {
window.jQuery = otherjQuery;
main();
};
}