在浏览器

时间:2017-02-01 16:06:39

标签: javascript ajax

我想问一下如何在浏览器中替换页面的完整地址。

示例:

www. myWebsite .com -> www. superWebsite .com

是否可以使用 JavaScript Ajax 或其他什么?

出于好奇,我的笔记本电脑上的教育和自己的目的。

2 个答案:

答案 0 :(得分:2)

如果我理解正确,那么我想你想从一个页面导航到另一个页面,

为此你应该使用

var myWebLink = 'www.superWebsite.com'

window.location.href = myWebLink;

它将导航到www。超级网站.com

答案 1 :(得分:1)

您无法在不导航到该网站的情况下更改地址栏中的值。您可以使用多种方式导航到其他页面。

var domain= "www.superWebsite.com"
var url = "http://" + domain
// use one of following ways
location = url
window.location = url 
window.location.href = url    // will work in most browsers
window.location.assign(url)
window.location.replace(url)  // back button will not redirect to current page after navigating to `url`