一个html页面传入参数到另一个html页面用js获取方法
Posted 鄒成立
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个html页面传入参数到另一个html页面用js获取方法相关的知识,希望对你有一定的参考价值。
没错使用以下函数就能够完整的获取到路径里的你想要的参数:
function getURLParameter(name) {
return decodeURIComponent((new RegExp(‘[?|&]‘ + name + ‘=‘ + ‘([^&;]+?)(&|#|;|$)‘).exec(location.search)||[,""])[1].replace(/\+/g, ‘%20‘))||null;
}
function getURLParameter(name) { return decodeURIComponent((new RegExp(‘[?|&]‘ + name + ‘=‘ + ‘([^&;]+?)(&|#|;|$)‘).exec(location.search)||[,""])[1].replace(/\+/g, ‘%20‘))||null; }
以上是关于一个html页面传入参数到另一个html页面用js获取方法的主要内容,如果未能解决你的问题,请参考以下文章