这可能非常简单,但我是一个新手。我想在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';})()
但它不起作用。
你能帮助我吗?
答案 0 :(得分:0)
当您只是获取当前网址并将其作为哈希值粘贴时,不确定为什么要替换
window.location = 'http://www.example.com#url=' + window.location.href
或
window.location = 'http://www.example.com#url=' + encodeURIComponent(window.location.href)