如何从 iframe src 获取哈希值?

发布于 2024-11-02 19:12:53 字数 92 浏览 1 评论 0原文

当我执行 iframe.src 时,我的 iframe 有一个带有哈希值的 url,它只是为我提供了 url,而没有从其他域附加哈希值。我可以读取带有哈希值的整个网址吗?

My iframe is having a url with a hash value when i do iframe.src it just gives me the url without the hash appended to it from the other domain. Can i read the entire url with the hash.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坐在坟头思考人生 2024-11-09 19:12:53

由于安全限制,不太可能 - 我很惊讶你甚至可以获得 URL

你能显示代码吗?

听起来像是 如何获取跨域中的 iframe contentWindow 高度的重复项

Not likely due to security constraints - I am surprised you can even get the URL

Can you show the code?

Sounds like a duplicate of How to get iframe contentWindow height in cross domain

自在安然 2024-11-09 19:12:53
var contentWnd = $('iframe').attr('contentWindow');
var hash = contentWnd.window.location.hash;

改编此答案: 从 iframe 获取 url 并更新哈希在浏览器网址中

var contentWnd = $('iframe').attr('contentWindow');
var hash = contentWnd.window.location.hash;

Adaptation of this answer: Get url from iframe and update hash in browser url

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文