Is it somehow possible to stop a script tag from loading after is has been added to the head of a HTML document?
I would like to have something like this:
var script_tag = document.createElement('script');
script_tag.setAttribute('type', 'text/javascript');
script_tag.setAttribute('src', 'http://fail.org/nonexistant.js');
document.getElementsByTagName('head')[0].appendChild(script_tag);
// something like this!!!
script_tag.abort(); why would you want to do this?
以上就是Is it possible to stop a dynamically inserted script tag?的详细内容,更多请关注web前端其它相关文章!