次のコードを使用して、ウィジェットに必要なJSライブラリをロードしています。
function loadScrip(url, callback) {
var script = document.createElement("script")
script.type = "text/javascript";
if (script.readyState) { //IE
script.onreadystatechange = function () {
if (script.readyState == "loaded" || script.readyState == "complete") {
script.onreadystatechange = null;
callback();
}
};
} else { //Others
script.onload = function () {
callback();
};
}
script.src = url;
document.getElementsByTagName("head")[0].appendChild(script);
}
loadScrip("http://code.jquery.com/jquery-1.8.3.js", function () {
loadScrip("http://code.jquery.com/ui/1.9.2/jquery-ui.js", function () {
alert("Loaded");
js13 = jQuery.noConflict(true);
main();
});
});
これは、すべてのブラウザーとIE9で問題なく機能します。
しかし、IE 7および8では、何らかの理由でjquery-ui.jsが読み込まれず、エラーが発生します。
Line: 563
Character: 4
Code: 0
Error Message: Object doesn't support this property or method
URL: http://code.jquery.com/jquery-1.8.3.js
これを修正する方法はありますか?この問題で壁に頭をぶつけている