我正在尝试将yepnope.js注入页面,然后使用yepnope加载其他JS文件。
Chrome开发工具网络标签显示提取了yepnope,元素标签显示元素被注入。但控制台选项卡显示:
Uncaught ReferenceError: yepnope is not defined
这是我的代码:
var betaApp = {
injectYepnope: function(url) {
var gp = document.createElement( 'script' );
gp.type = 'text/javascript';
gp.async = true;
gp.src = url;
gp.onload = betaApp.yepnopeLoaded;
// Only for IE 6 and 7
gp.onreadystatechange = function()
{
if( this.readyState == 'complete' )
{
betaApp.yepnopeLoaded();
}
}
document.body.appendChild(gp);
},
yepnopeLoaded: function() {
yepnope([
{
load: ['//cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js', 'http://raw.github.com/andris9/jStorage/master/jstorage.js'],
complete: function() {
betaApp.firstPartLoaded();
}
},
{
load: [
'http://code.jquery.com/jquery-1.8.2.min.js',
'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js',
'https://raw.github.com/Automattic/Iris/master/dist/iris.js',
'https://raw.github.com/cnkt/eksi-beta/master/ui/js/twitter-bootstrap/js/bootstrap-modal.js',
'https://raw.github.com/Automattic/Iris/master/src/iris.min.css'
],
complete: function() {
betaApp.allJsLoaded();
}
}
]);
}
};
betaApp.injectYepnope('https://raw.github.com/cnkt/eksi-beta/master/ui/js/yepnope.js');
提前致谢。
答案 0 :(得分:0)
您的代码本身很好,但是您需要确保在DOM准备好之后调用它,否则它无法将脚本附加到文档中。
使用库onReady事件(例如JQuery.ready()
) - 如果此代码必须位于外部文件中,则只能将该脚本直接添加到HTML中文件的结尾。