详细解析BOM中Location对象
Location对象包含有关当前URL的信息。
// href 返回完整的URL console.log(location.href); // host 返回一个URL的主机名和端口 console.log(location.host); // hostname 返回URL的主机名 console.log(location.hostname); // port 返回一个URL服务器使用的端口号 console.log(location.port); // origin 源 返回URL的协议,主机名和端口号。 console.log(location.origin); // pathname 返回的URL路径名。 console.log(location.pathname); // protocol 返回一个URL协议 console.log(location.protocol); // search 返回一个URL的查询部分 ?后面的内容(包含?) console.log(location.search); // hash 返回一个URL的锚部分 #后面的内容(包含#) console.log(location.hash);