首页 > Web开发 > 详细

JS一些常用的命令——获得当前的信息

时间:2015-02-15 21:56:45      阅读:333      评论:0      收藏:0      [点我收藏+]
console.info("document.URL=" + document.URL);
console.info("document.location.href=" + document.location.href);
//console.info("document.base=" + document.base); //这是错的!
console.info("document.location=" + document.location);
console.info("self.location.href=" + self.location.href);
console.info("top.location.href=" + top.location.href);
console.info("location.hostname=" + location.hostname);
console.info("window.location.host=" + window.location.host);
console.info("window.location.pathname=" + window.location.pathname);

JS一些常用的命令——获得当前的信息

原文:http://my.oschina.net/u/1037462/blog/378853

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!