为什么 window.location.href 在 chrome 中返回 about:blank ?
我正在尝试创建一个简单的书签来捕获页面的标题和网址。这基本上是我所拥有的:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能会帮助您解决您的问题:
location.href is about:Chrome 中的空白。希望有帮助
This might help you in solving your problem:
location.href is about:blank in Chrome. Hope it helps