我正在使用jQuery动态插入一个脚本元素。脚本按预期加载,但加载事件不会触发。
jQuery('<script/>').attr({
type : 'text/javascript',
src : 'http://platform.twitter.com/widgets.js'
}).appendTo('body').load(function(){
/* This alert does not fire: */
alert('I just loaded!');
});
如果我使用常规JavaScript来插入元素,那么load事件会触发并且可以用jQuery捕获。
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = 'http://platform.twitter.com/widgets.js';
document.body.appendChild(e);
jQuery(e).load(function(){
/* This alert does fire: */
alert('I just loaded!');
});
我做错了什么?
答案 0 :(得分:12)
请改用jQuery.getScript()
[docs]方法。
$.getScript('http://platform.twitter.com/widgets.js',function(){
alert('I just loaded!');
});
或者,在当前版本的jQuery上,使用如下的promise模式
$.getScript('http://platform.twitter.com/widgets.js')
.done(function(){
alert('I just loaded!');
})
.fail(function(){
console.log('script could not load');
})
;
编辑:删除了从问题中复制的代码注释,因为它增加了对答案的混淆。感谢@Jeff指出它。