发布于 2023-11-03 11:12:41 浏览 157 次
window.location.href:返回完整的页面 URL。
window.location.protocol:返回页面使用的协议(如 "http:" 或 "https:")。
window.location.host:返回页面的主机名和端口号。
window.location.hostname:返回页面的主机名。
window.location.port:返回页面的端口号。
window.location.pathname:返回页面的路径部分。
window.location.search:返回页面的查询字符串部分。
window.location.hash:返回页面的 URL 中的锚点部分。
3、
以下是一个示例:console.log(window.location.href); // 输出完整的页面 URL
console.log(window.location.protocol); // 输出页面使用的协议
console.log(window.location.host); // 输出页面的主机名和端口号
console.log(window.location.hostname); // 输出页面的主机名
console.log(window.location.port); // 输出页面的端口号
console.log(window.location.pathname); // 输出页面的路径部分
console.log(window.location.search); // 输出页面的查询字符串部分
console.log(window.location.hash); // 输出页面的锚点部分
4、
请注意,这些属性中的大多数会返回字符串值。如果需要对这些值进行解析或操作,请使用适当的方法或正则表达式。