简单总结下 JavaScript 环境下获取当前地址相关信息
window.location
window.location
中包含了很丰富的地址信息1
console.log(window.location)
1 | { |
一般常用到 window.location.href
来获取当前地址,window.location.search
来分析传入的参数
referrer
referrer 是流量来源地址,非常有用,可以用它来做
- 登陆后跳回访问页面
- 网站数据统计
- 防盗链
获取非常简单1
2console.log(document.referrer);
// https://www.google.com/
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章