我听说使用document.location不是一个好主意。 window.location更好。
但是document.URL也扮演着类似的角色。
var msg = '<p><b>page title: </b>'+document.title +'<br/>';
msg += '<b>page address: </b>'+document.URL +'<br />';
msg += '<b>page address: </b>'+window.location+'<br/>';
msg += '<b>last modified: </b>'+ document.lastModified + '</p>';
var el = document.getElementById('footer');
el.innerHTML = msg;
在我的代码中,document.URL和window.location打印出相同的地址。 他们之间有什么不同?我什么时候应该使用document.URL和window.location?