Javascript没有提供执行此操作的核心方法,那么该怎么做呢?
2 回答
湖上湖
TA贡献2003条经验 获得超2个赞
function getURLParameter(name) {
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [null, ''])[1].replace(/\+/g, '%20')) || null;
}
因此,您可以使用:
myvar = getURLParameter('myvar');
冉冉说
TA贡献1877条经验 获得超1个赞
如果URI中有一个哈希标记,这行得通吗?如果#something
Chrome中有,则您必须使用window.location.hash
而不是window.location.search
...
添加回答
举报
0/150
提交
取消