window.href
标签:
JavaScript
1.首先来看看window.href对象
2.对象变量解释
2.对象变量解释
window.location.hash 哈西
window.location.host 主机(带端口号)
window.location.hostname 主机名称
window.location.pathname url 路径部分
window.location.port 端口
window.location.protocol 协议
window.location.search url参数
window.location.href 整个链接
encodeURL编码、decodeURL 解码
function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return decodeURI(r[2]); return null; }
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦