用于编辑当前 URL 的书签

发布于 2024-08-30 00:39:05 字数 381 浏览 6 评论 0原文

我正在寻找一个简单的书签来获取我网站的当前 URL 并通过一些更改来刷新它。例如:

  1. 获取当前页面: http://www.example.com/pages/
  2. 并更改其为: https://admin.example.com/pages/
  3. 然后加载该新 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:

  1. Take the current page: http://www.example.com/pages/
  2. and change it to: https://admin.example.com/pages/
  3. 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 技术交流群。

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

发布评论

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

评论(3

咋地 2024-09-06 00:39:05

只需更改 window.location,例如

window.location=window.location.toString().replace(/^http:\/\/www\./,'https://admin.')

完整的书签将是:

javascript:(function() {window.location=window.location.toString().replace(/^http:\/\/www\./,'https://admin.');})()

Just change window.location, e.g.

window.location=window.location.toString().replace(/^http:\/\/www\./,'https://admin.')

The full bookmarklet would then be:

javascript:(function() {window.location=window.location.toString().replace(/^http:\/\/www\./,'https://admin.');})()
笛声青案梦长安 2024-09-06 00:39:05

例如,您可以使用 replace 方法将字符串的一部分替换为正则表达式。

 javascript:location = location.href.replace(/http:/g, "https:" ) 

上面的代码会将新的字符串值分配给 location 并触发页面重新加载。

For example you could replace a part of the string using the replace method with a regular expression.

 javascript:location = location.href.replace(/http:/g, "https:" ) 

The above will assign the new string value to the location and trigger the page reload.

浪荡不羁 2024-09-06 00:39:05

这个将更改站点名称

javascript:(function() {document.title=prompt("Enter Page Title");})();

This one will change the site name

javascript:(function() {document.title=prompt("Enter Page Title");})();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文