我在ajax调用后通过Javascript加载脚本。为此,我使用此代码:
var imported = document.createElement('script');
imported.src = 'https://www.example.com/scripts/form.js';
imported.type = 'text/javascript';
document.head.appendChild(imported);

此Javascript文件(https://www.example.com/scripts/form.js
)将在Google Chrome,Edge和Firefox上添加到文档的head
后运行,但不会在IE 11.我必须添加哪些代码才能在IE上执行该脚本?
答案 0 :(得分:0)
我发现,在谷歌搜索之后,我只是添加了这行代码,然后才将其添加到head
。
imported.onreadystatechange = function () { }; // For IE 11