最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why won't jQuery's load event fire on dynamically inserted script elements? - Stack Overflow

programmeradmin2浏览0评论

I'm dynamically inserting a script element using jQuery. The script loads as expected, but the load event does not fire.

jQuery('<script/>').attr({
    type : 'text/javascript',
    src : '.js'
}).appendTo('body').load(function(){
    /* This alert does not fire: */
    alert('I just loaded!');
});

If I use regular JavaScript to insert the element, the load event does fire and can be caught with jQuery.

var e = document.createElement('script'); 
e.type = 'text/javascript';
e.src = '.js';
document.body.appendChild(e);

jQuery(e).load(function(){
    /* This alert does fire: */
    alert('I just loaded!');
});

What am I doing wrong?

I'm dynamically inserting a script element using jQuery. The script loads as expected, but the load event does not fire.

jQuery('<script/>').attr({
    type : 'text/javascript',
    src : 'http://platform.twitter./widgets.js'
}).appendTo('body').load(function(){
    /* This alert does not fire: */
    alert('I just loaded!');
});

If I use regular JavaScript to insert the element, the load event does fire and can be caught with jQuery.

var e = document.createElement('script'); 
e.type = 'text/javascript';
e.src = 'http://platform.twitter./widgets.js';
document.body.appendChild(e);

jQuery(e).load(function(){
    /* This alert does fire: */
    alert('I just loaded!');
});

What am I doing wrong?

Share Improve this question asked Jun 26, 2011 at 17:30 John BlackbournJohn Blackbourn 8581 gold badge10 silver badges14 bronze badges 2
  • 2 Why not just use javascript.. jquery IS javascript, so what's the problem? – AlanFoster Commented Jun 26, 2011 at 17:35
  • 2 That's what I'm currently doing, but I'd still like to know why the jQuery implementation isn't working as expected. Hence the question. – John Blackbourn Commented Jun 28, 2011 at 7:31
Add a ment  | 

1 Answer 1

Reset to default 12

Use the jQuery.getScript()[docs] method instead.

$.getScript('http://platform.twitter./widgets.js',function(){
    alert('I just loaded!');
});

Or, on current versions of jQuery, using the promise pattern as below

$.getScript('http://platform.twitter./widgets.js')
  .done(function(){
    alert('I just loaded!');
  })
  .fail(function(){
    console.log('script could not load');
  })
;

EDIT: Removed the code ment that was copied from the question, as it added confusion to the answer. Thanks to @Jeff for pointing it out.

发布评论

评论列表(0)

  1. 暂无评论