在保存小书签(favelet)之前停止 safari 评估 document.location

发布于 2024-08-01 15:28:25 字数 424 浏览 3 评论 0原文

我创建了一个非常简单的小书签,用于将当前正在查看的网站的 URL 提交给脚本:

javascript:document.location%20=%20'http://www.example.com/script?user=___&key=___&url='+document.location

我将其作为 HTML 页面上的链接提供,用户可以将其拖动到他或她的书签工具栏或其他位置。 问题是 Safari 似乎会在创建书签之前单独评估 JS,因此提交的 URL 始终是我显示链接的页面的 URL。

我该如何解决这个问题,阻止 Safari 在添加书签之前评估 document.location,而不破坏其他浏览器的功能? 我宁愿避免为 Safari 提供单独的书签。

谢谢!

马拉

I have created a very simple bookmarklet to submit the url of the site currently being viewed to a script:

javascript:document.location%20=%20'http://www.example.com/script?user=___&key=___&url='+document.location

I serve this as a link on an HTML page that a user can drag up into his or her bookmarks toolbar or wherever. The catch is that Safari alone seems to evaluate the JS before creating the bookmark, so the URL submitted is always that of the page on which I display the link.

How do I go about fixing this, stopping Safari from evaluating the document.location before bookmarking, without breaking it for other browsers? I'd rather avoid having to have a separate bookmarklet for Safari.

Thanks!

Mala

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

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

发布评论

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

评论(1

昇り龍 2024-08-08 15:28:25

我相信答案是简单地用 escape() 包围评估的部分:

[...]&url='+escape(document.location)

目前无法访问 mac/safari,所以我不能确定它是否有效......

I -believe- the answer is to simply surround the evaluated part with escape():

[...]&url='+escape(document.location)

Don't currently have access to a mac/safari, so I can't tell you for sure if it works...

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