问题描述
因此,我正在尝试创建服务工作者以监视页面上的访问量。在加载iframe之前,一切看起来都不错。看来,当它是外部src时,提取不会接听电话。即使添加了相同原点,也会发生这种情况。这是我用来向页面添加iframe的代码。
function injectIFrame () {
console.log("injectIFrame fired");
var newIFrame = document.createElement("iframe");
newIFrame.setAttribute('sandBox','allow-same-origin allow-scripts');
newIFrame.src = "https://google.com/iframe.html"; //./listmanager.html is getting caught
var target = document.getElementById("scriptOne");
target.innerHTML = "";
target.appendChild(newIFrame)
}
它甚至都没有接听对https://google.com/iframe.html
的初始调用?iframe是否未注册到提取侦听器?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)