Difference between document.URL and location.href

前端 未结 3 1780
隐瞒了意图╮
隐瞒了意图╮ 2020-12-13 08:45

I know that document.URL can not be set, while location.href can.

But the Document indicates:

URL is a replacement f

3条回答
  •  一向
    一向 (楼主)
    2020-12-13 09:04

    Yes and no!

    alert(document.url);  
    document.url="http://www.google.co.uk";  
    alert(document.url);  
    

提交回复
热议问题