location对象属性
如下代码:
<script type="text/javascript">
var host=window.location.host;
//var hash1=window.location.hash;
var hostname=window.location.hostname;
var href= window.location.href;
var pathname=window.location.pathname;
var port1=window.location.port;
var protocol=window.location.protocol;
//var search=window.location.search;
document.write("主机名和当前URL的端口号:"+host+"<br/>"+"锚点:"+"<br/>"+"主机名:"+hostname+"<br/>"+"完整的URL:"+href+"<br/>"+"当前URL的路径部分为:"+pathname+"<br/>"+"端口号:"+port1+"<br/>"+"当前URL协议"+protocol+"<br/>")
</script>
为什么hash,port,search这三个对象的属性不能够显示出来?如果我的代码格式错误,那么请问对的代码格式是什么?
谢谢你的回答