document.URL 标准应该是只读属性,个浏览器实现有所不同
IE6-8 可以赋值,支持
IE9,Google 只读,不支持
Document.loaction.href 标准重定向属性
IE6-9,Google支持
来自网上:
document.location.href和document.location.replace
都可以实现从A页面切换到B页面,但他们的区别是:
用document.location.href切换后,可以退回到原页面。
而用document.location.replace切换后,不可以通过“后退”退回到原页面。