在浏览器控制台中为加载页面的特定 iframe 运行跨站点 javascript
是否可以在浏览器上为当前加载文档的一个 iframe 运行 javascript 命令(通过控制台或 javascript: in URL)?
由于它是不同的域,因此如果我尝试 document.getElementById('iframeID').contentWindow.document;
我会收到访问被拒绝的消息。
Is it possible to run javascript commands on a browser for one iframe of the current loaded document (via console or javascript: in URL)?
Since it's a different domain, if i try document.getElementById('iframeID').contentWindow.document;
i get an access denied.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 firebug:
我认为目前在 webkit 调试器中不可能(大约 6 个月前还没有,但这可能已经改变),不知道如何在 IE 中做到这一点。
if you're using firebug:
I don't think it's currently possible in webkit debuggers (it wasn't as of about 6 months ago, but that may have changed), wouldn't have a clue how to do it in IE.