我正在根据此处找到的教程在 jquery 上构建一个 Web 小部件。
基本上,它会检查是否加载了 jQuery,否则会加载它。我的小部件仅显示一个按钮,而 onClick 显示一个加载 iframe 的花式框。
(function() {
// Localize jQuery variable
var jQuery;
/******** Load jQuery if not present *********/
if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') {
var script_tag = document.createElement('script');
script_tag.setAttribute("type","text/javascript");
script_tag.setAttribute("src",
"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
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;
}
// Try to find the head, otherwise default to the documentElement
(document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
} else {
// The jQuery version on the window is the one we want to use
jQuery = window.jQuery;
main();
}
/******** Called once jQuery has loaded ******/
function scriptLoadHandler() {
// Restore $ and window.jQuery to their previous values and store the
// new jQuery in our local jQuery variable
jQuery = window.jQuery.noConflict(true);
// Call our main function
main();
}
/******** Our main function ********/
function main() {
jQuery(document).ready(function($) {
// We can use jQuery 1.4.2 here
/**** LOAD FANCYBOX ******/
$.getScript("fancyboxURL");
// I also tried loading fancybox here but that didnt work either
$(".fancybox").fancybox();
});
}
})(); // We call our anonymous function immediately
加载页面时出现以下错误。
Uncaught TypeError: undefined is not a function jquery.fancybox.pack.js?v=2.1.5:2
Uncaught TypeError: Cannot read property 'fancybox' of undefined jquery.fancybox-thumbs.js?v=1.0.7:19
Uncaught TypeError: Property '$' of object [object Object] is not a function
一些尝试
在错误Property "$" ....
错误来自的文件中,它当前读取
$(document).ready(function(){
$(".fancybox").fancybox();
});
从其他线程我发现我应该尝试
jQuery(function($){
$(".fancybox").fancybox();
});
但那只给了我Property "jQuery" of object is not a function
。
我知道代码可以正常工作,因为如果我手动包含jQuery
在我的 html 文件中,它就可以工作。
我的 HTML 文件如下:-
<html>
<head>
<!-- IF I UNCOMMENT THE BELOW LINE IT WORKS! Add jQuery library -->
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"> </script>-->
</head>
<body>
<!-- load widget -->
<script src="http://mywidgetURL.../widget/myWidget.js" type="text/javascript"></script>
<div id="widget-container"></div>
</body>
</html>
当我在 Chrome 上检查元素时生成的标记似乎表明 jQuery 已加载。