我有一个选项卡式面板,在其中单击特定选项卡时,我需要将三个 js 文件和一个 html 文件加载到当前 DOM 中,并执行与这些 js 和 html 文件相关的方法。
html 文件包含模板,需要加载到隐藏的 iframe 中。
我可以通过将相应的标签附加到正文来加载相同的内容,但我需要在加载所有文件后执行一个函数。
加载所有文件后如何获取事件。?
--------------- 新问题 ----------
加载文件后我成功获得了事件。
我有以下问题。
我有一个 html 文件即时加载,并将内容提供给动态创建的 iframe,如下所示
content = document.createElement("iframe");
content.style.display = "none";
content.src = 'data:text/html;charset=utf-8,' + encodeURI(responseText);
我的基本协议是https
. 当协议http
没有错误时。现在我收到以下错误。
The frame requesting access has a protocol of '', the frame being accessed has a protocol of 'https'. Protocols must match.
请帮忙。