标签:路径 location 页面 geturl arc number ace name html
没错使用以下函数就能够完整的获取到路径里的你想要的参数:
function getURLParameter(name) {
return decodeURIComponent((new RegExp(‘[?|&]‘ + name + ‘=‘ + ‘([^&;]+?)(&|#|;|$)‘).exec(location.search)||[,""])[1].replace(/\+/g, ‘%20‘))||null;
}
标签:路径 location 页面 geturl arc number ace name html
原文地址:http://www.cnblogs.com/zouchengli/p/6681179.html