Posted in Javascript onMarch 02, 2017
本文实例讲述了JavaScript正则获取地址栏中参数的方法。分享给大家供大家参考,具体如下:
一、问题:
获取地址栏中的参数:
若地址栏中的地址是:
http://10.124.36.56:8080/CMOD/index.jsp?name=you&password=123456&type=student
要求获取地址栏中的最后一个参数type
二、实现的JS:
function getAddressURLParam(paramName) { //构造一个含有目标参数的正则表达式的对象 var reg = new RegExp("(^|&)" + paramName + "=([^&]*)(&|$)"); //匹配目标参数 var url = window.location.search.substr(1).match(reg); //返回参数值 if(url != null) return unescape(url[2]); return null; }
获取type参数值:
var typeParem = getAddressURLParam(type);
实现结果:
得到type参数值:student
JavaScript正则获取地址栏中参数的方法
- Author -
翱翔天地声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@