Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检索外部的 url iframe。
iframe
我可以在浏览器中看到的 url,但是我怎样才能通过 JS 或 PHP 在浏览器中看到的 url?
预览图 1:
预览图 2:
在预览图像 1 中单击蓝色悬停的 firefox 菜单项后,我在 firefox 中获得了我想要的结果。
如何在 JS 中获得这个?
在 javascript 中:在 HTML 代码中查找 iframe 的 src。您可以通过 id 或标签获取 iframe,然后获取它的 src 属性。
你可以通过javascript做到这一点。
var url = document.getElementById("myiframe").src;
myiframeiframe 的 ID 属性在哪里。
myiframe
尝试在 php 中执行此操作将需要您解析 dom。
这个在这里工作
您可以为此使用 jquery
var url = $('#myiframe').contents().get(0).location.href;
此外,您必须识别浏览器特定documentWindow对象才能获取.location.href值。
documentWindow
.location.href
这个问题在这里解释。