为什么 window.location.href 在 chrome 中返回 about:blank ?

发布于 2024-12-29 09:42:27 字数 333 浏览 0 评论 0原文

我正在尝试创建一个简单的书签来捕获页面的标题和网址。这基本上是我所拥有的:

<a href="javascript:location.href='http://supergroovsite.net?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(window.document.title)">bookmarklet</a>

它在其他浏览器中工作正常,但 Chrome 返回“about:blank”。有时它会返回正确的网址。为什么会发生这种情况?

I'm trying create a simple bookmarklet to capture the title and url of a page. Here's basically what I have:

<a href="javascript:location.href='http://supergroovsite.net?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(window.document.title)">bookmarklet</a>

It works fine in other browsers but Chrome returns 'about:blank'. Sometimes it returns the correct url. Why is this happening?

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

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

发布评论

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

评论(1

如梦 2025-01-05 09:42:27

这可能会帮助您解决您的问题:
location.href is about:Chrome 中的空白。希望有帮助

This might help you in solving your problem:
location.href is about:blank in Chrome. Hope it helps

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