从父文档获取 iframe URL 位置
我有 iframe 文档。我使用以下方法设置 iframe 的位置没有问题:
$('#iframe').attr('src', 'http://www.another-domain-site.com');
当用户导航该 iframe 中的几个页面时,我想返回他最终到达的 URL。但是当 iframe 的 SRC 属性永远不会改变我最初设置的值时。
有没有办法在 iframe 发生变化或无法绕过同域策略时获取 iframe 的位置?
考虑到上面的问题,我还有一个问题 - 有没有一种方法可以让浏览器请求用户允许此类请求? Chrome 扩展以同样的方式请求扩展权限吗?
I have document with iframe. I have no problem setting iframe's location by using this:
$('#iframe').attr('src', 'http://www.another-domain-site.com');
When user navigates a few pages in that iframe, then I want to get back URL where he ends up. But when the SRC attribute of the iframe never changes from what I initially have set.
Is there a way how to get iframe's location when it changes or there is no way around same-domain policy ?
I have one more question on my mind considering question above - is there a way how browser could ask user for permission to allow this type of requests ? The same way Chrome extensions ask for extended permissions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,经过更多搜索,我发现有人问了完全相同的问题 此处,简短的回答是:“不可能”。
I am sorry, after more searching I've found someone ask exactly same question here and the short answer is: "Its not possible".