版权声明:
尊重知识产权,严厉打击非法采集。
例如Url地址 http://www.hooyes.com/test.html?name=hooyes&age=18
在test.html 页面中使用用js获取url 中参数 name 和 age 的值
function Request(m) {
var sValue = location.search.match(new RegExp("[\?\&]" + m + "=([^\&]*)(\&?)", "i"));
return sValue ? sValue[1] : sValue;
}
var name_val = Request("name"); //获得值 name 的值 hooyes
var age_val = Request("age"); //获得值 age 的值 18
$ welcome to hooyes.net
[INFO] ------------------------------o-
[INFO] Author : HOOYES
[INFO] Site : https://hooyes.net
[INFO] Page : https://hooyes.net/p/javascript-request
[INFO] Last build : 2023-07-31 09:16:20 +0000
[INFO] -0------------------------------
下一篇 JSON 日期格式化方法