一、用JS获取地址栏参数// 1. 获取地址栏完整的字符串
let urlStr = window.location.href
// 2. 获取ip协议与端口
let ip = window.location.protocol + '//'
2021-12-23