PHP
·
发表于 5年以前
·
阅读量:8296
完整URL组成部分:scheme://host:port/path?query#fragment
window.location.href //整个URI字符串
window.location.protocol //(scheme:通信协议)
window.location.host // (主机名(域名或IP地址))
window.location.port // (端口号)
window.location.pathname // (路径)
window.location.search // (参数)
window.location.hash (信息片断(锚点))