无法将脚本类型text / wreq附加到iframe

时间:2017-07-17 13:47:39

标签: javascript iframe

我可以追加没有类型或type="text/javascript"但没有此脚本的脚本type="text/wreq"

我的iframe代码是

<iframe id="result-iframe" allowfullscreen="true" sandbox="allow-scripts allow-pointer-lock allow-same-origin allow-popups allow-modals allow-forms" allowtransparency="true" class="result-iframe"></iframe>

我正在使用这种语法附加脚本

var head = iframe.contentWindow.document.getElementsByTagName('head')[0];
var script = iframe.contentWindow.document.createElement('script');
script.type = 'text/wreq';
script.src = '/wreq.js';
head.appendChild(script);

我相信语法是正确的,因为其他插入脚本正在运行任何帮助将不胜感激....

0 个答案:

没有答案