Bookmarklet:在头部URL之前添加URL

时间:2018-04-17 14:59:50

标签: javascript bookmarklet

这可能非常简单,但我是一个新手。我想在URL的开头添加一些内容,如下所示:

orignial网址: https://www.example.com/new-article

使用bookmarklet我想让URL看起来像这样

https://testtool.com/testing-tool#url=https://www.example.com/new-article

我试过这样的事情

javascript:(function() {window.location=window.location.toString().replace(/^https:\/\/www\./,'https://testtool.com/testing-tool#url=https';})()

但它不起作用。

你能帮助我吗?

1 个答案:

答案 0 :(得分:0)

当您只是获取当前网址并将其作为哈希值粘贴时,不确定为什么要替换

window.location = 'http://www.example.com#url=' + window.location.href

window.location = 'http://www.example.com#url=' + encodeURIComponent(window.location.href)