本帖最后由 Simon.hu 于 2020-2-27 17:44 编辑
XXX.XX.COM/AAA#[color=rgb(79, 79, 79) !important]%E5[color=rgb(79, 79, 79) !important]%BC[color=rgb(79, 79, 79) !important]%A0[color=rgb(79, 79, 79) !important]%E4[color=rgb(79, 79, 79) !important]%B8[color=rgb(79, 79, 79) !important]%89
[color=rgb(79, 79, 79) !important]
[color=rgb(79, 79, 79) !important]可以通过地址栏的一些参数获取,进行业务统计或者渠道信息采集
[color=rgb(79, 79, 79) !important]比如 www.qq.com/hzg#张三
[color=rgb(79, 79, 79) !important]
[color=rgb(79, 79, 79) !important]www.qq.com/hzg#[color=rgb(79, 79, 79) !important]%E5[color=rgb(79, 79, 79) !important]%BC[color=rgb(79, 79, 79) !important]%A0[color=rgb(79, 79, 79) !important]%E4[color=rgb(79, 79, 79) !important]%B8[color=rgb(79, 79, 79) !important]%89
[color=rgb(79, 79, 79) !important]
[color=rgb(79, 79, 79) !important]使用 JavaScript 命令 JavaScript encodeURI()
代码如下
- [hide]
- //获取地址栏内容
- var path=window.location.href;
- console.log(path);
- console.log(path.split("#")[1]);
- //decodeURI解码中文
- path= decodeURI(path)
- //填写修改活字格页面 path单元格内容
- Forguncy.Page.getCell("path").setValue(path.split("#")[1]);[/hide]
复制代码
|