用于编辑当前 URL 的书签
我正在寻找一个简单的书签来获取我网站的当前 URL 并通过一些更改来刷新它。例如:
- 获取当前页面: http://www.example.com/pages/
- 并更改其为: https://admin.example.com/pages/
- 然后加载该新 URL。
我尝试寻找可以执行此操作的书签,但找不到。有人能指出我正确的方向吗?即使是一个可以执行类似操作的小书签,我也可以对其进行编辑以满足我的需要。
I'm looking for a simple bookmarklet to take the current URL of my website and refresh it with a couple of changes. For example:
- Take the current page: http://www.example.com/pages/
- and change it to: https://admin.example.com/pages/
- then load that new URL.
I tried searching for a bookmarklet that can do this but I couldn't find one. Can anyone point me in the right direction? Even a bookmarklet that does something like this that I can edit to suit my needs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需更改
window.location
,例如完整的书签将是:
Just change
window.location
, e.g.The full bookmarklet would then be:
例如,您可以使用
replace
方法将字符串的一部分替换为正则表达式。上面的代码会将新的字符串值分配给
location
并触发页面重新加载。For example you could replace a part of the string using the
replace
method with a regular expression.The above will assign the new string value to the
location
and trigger the page reload.这个将更改站点名称
This one will change the site name