console.log("href: " + window.location.href);// href: http://192.168.1.82:8088/musics
console.log("protocol: " + window.location.protocol);// protocol: http:
console.log("host: " + window.location.host);// host: 192.168.1.82:8088
console.log("hostname: " + window.location.hostname);// hostname: 192.168.1.82
console.log("port: " + window.location.port);// port: 8088
console.log("pathname: " + window.location.pathname);// pathname: /musics
console.log("search: " + window.location.search);// search:
console.log("hash: " + window.location.hash);// hash:
02-28
495