拦截了一个来源为 "http://localhost" 的框架。

13 浏览
0 Comments

拦截了一个来源为 "http://localhost" 的框架。

我正在为房产搜索的idx插件工作。它是一个用于搜索房产的http链接,但我想将此链接转换为https。为此,我使用了\njquery代码:\n

var iframe = document.getElementById("foo");
var elmnt = iframe.contentWindow.document.getElementsByTagName("body");
elmnt.style.display = "none";

\niframe表单内容是使用http的操作,我想将其改为https:\n

\n我该如何做到这一点?我尝试了并搜索了所有相关内容,但对我来说没有起作用。

0