为什么window.location.href返回:chrome中的空白?

时间:2012-01-27 04:29:47

标签: javascript google-chrome bookmarklet

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

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

它在其他浏览器中运行良好,但Chrome返回'about:blank'。有时它返回正确的URL。为什么会这样?

1 个答案:

答案 0 :(得分:3)

这可以帮助您解决问题: location.href is about:blank in Chrome。希望它有所帮助