0

有人可以帮我写一个 JavaScript,当使用它时,它会在浏览器的 URL 字段中获取任何给定的 URL,并在“.com”之后和后面的任何其他内容之前附加一些内容。

具体来说,如果我在http://www.example.com/test上,那么我想要添加一些东西,比如 var.ia.bles 被附加在“.com”和“/test”之间,这样它看起来像这样:http://www.example.com.var.ia.bles/test

在此任务结束时,如果能够以这样一种方式刷新浏览器,它现在将最终用户引导到修改后的 URL 指向的路径,那就太好了。

4

1 回答 1

1

location对象具有您需要的所有部分。

location.assign(location.protocol + '//' + location.hostname + '.var.ia.bles' + location.pathname + location.search + location.hash);
于 2012-07-23T01:54:53.587 回答