博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
正则表达式获取URL参数
阅读量:5140 次
发布时间:2019-06-13

本文共 448 字,大约阅读时间需要 1 分钟。

使用到的正则表达式:

[^\?&]?参数名=[^&]+

document.location.getURLPara = function (name) {    var reg = new RegExp("[^\?&]?" + encodeURI(name) + "=[^&]+");    var arr = this.search.match(reg);    if (arr != null) {        return decodeURI(arr[0].substring(arr[0].search("=") + 1));    }    return "";}

使用方法:

例如地址:http://localhost/URLParas/Test.aspx?name=mo&帅不帅=太帅了

alert(document.location.getURLPara("帅不帅"));

转载于:https://www.cnblogs.com/ZC_Mo-Blog/p/5526776.html

你可能感兴趣的文章
P1113 杂务
查看>>
20155320《网络对抗》MSF基础应用
查看>>
第七章 软件测试 课后习题
查看>>
一篇非常适合git入门的文章
查看>>
JSTL
查看>>
poj2286 the rotation game IDA*
查看>>
四级英语day10
查看>>
基于K-近邻分类算法的手写识别系统
查看>>
使用easyui的form提交表单,在IE下出现类似附件下载时提示是否保存的现象
查看>>
PC站跳转M站的方法
查看>>
wow 各职业体验(pvp)
查看>>
Streaming的receiver模式
查看>>
POI给Excel添加数字筛选
查看>>
回收站数据删除了,如何进行恢复?
查看>>
2018年外卖产品竞品分析
查看>>
Hibernate学习过程出现的问题
查看>>
沟通,让一切变得简单
查看>>
[转载]一个人的失败,99%失败于“脾气”
查看>>
Struts2 internationalization(国际化)
查看>>
Spring 代理模式及AOP基本术语
查看>>