JavaScript基础 window.location

window.location对象 用于获得当前页面的地址 (URL),并把浏览器重定向到新的页面。返回的是对象

console.log( window.location )
JavaScript基础 window.location_第1张图片
图片.png

window.location.href 获取路径字符串

console.log( window.location.href )

http://localhost:63342/WWW/js%E8%AF%BE%E7%A8%8B/%E7%BB%83%E4%B9%A05.html?_ijt=qss9ig8in58oc351i49a0c876o

window.location.hash 返回的是链接后面#跟的内容

console.log( window.location.hash )
JavaScript基础 window.location_第2张图片
图片.png

window.location.search 链接后面?跟的内容

console.log( window.location.search )
JavaScript基础 window.location_第3张图片
图片.png

你可能感兴趣的:(JavaScript基础 window.location)