我正在尝试创建一个简单的书签来捕获页面的标题和网址。这基本上就是我所拥有的:
<a href="javascript:location.href='http://supergroovsite.net?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(window.document.title)">bookmarklet</a>
它在其他浏览器中运行良好,但Chrome返回'about:blank'。有时它返回正确的URL。为什么会这样?