How to change the URL displayed in the browser wit

2019-01-09 01:39发布

Is it possible with JavaScript to change the browser's URL, but not leave the page?

4条回答
We Are One
2楼-- · 2019-01-09 02:12

In older browsers, you can not change the url in the address bar without leaving the page. But you can change the hash portion of the url without leaving the page. That is to say you can change www.example.com to www.example.com#new_text with JavaScript window.location.hash = "new_text"; everything after the # can be changed.

However, in HTML5 there is a new History API which allows you to change the part of the URL after the domain. So you still cannot change www.example.com to www.BankOfAmerica.com (for security reasons), but you can change www.example.com/foo to www.example.com/bar.

history.pushState("object or string representing the state of the page", "new title", "newURL");

Check When can I use... to see which browsers support HTML5 session history management and support the new pushState method.

In addition there is a JavaScript library which will normalizes the history API across browsers and changes the URL in new browsers and uses the hash portion for old browsers. See history.js .

查看更多
放我归山
3楼-- · 2019-01-09 02:23

No, it's not possible. And, whenever it is possible, that is a browser bug (I know about previous security bugs related to this behavior, and they were fixed in past).

Actually... You can change the last portion of the URL, anything after the # character. But the hostname and path can't be changed without leaving the page.

查看更多
狗以群分
4楼-- · 2019-01-09 02:27

You can change anything after the hash mark (#) as this is frequently used in Ajax applications such as Google search and the new Twitter. (That's why everything appears after the hash mark in those apps.) But if you change anything else, the page will have to be reloaded.

查看更多
可以哭但决不认输i
5楼-- · 2019-01-09 02:31

I'm going to assume you are talking about the visible URL in the URL bar.

The answer is No, it is a major security vulnerability when an application tries trick users into thinking that are at another site.

查看更多
登录 后发表回答