在 IE7 中如果location.hostname
更改前读取,更改document.domain
后 document.domainlocation.hostname
将无法再读取!!
alert(window.location.hostname);
document.domain = document.domain;
alert(window.location.hostname); // Access denied on IE7!
这是jsfiddle:http: //jsfiddle.net/yQwam/1/
并直接链接到页面: http: //fiddle.jshell.net/yQwam/1/show/