手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JS获取URL中的参数数据
JS获取URL中的参数数据
摘要:复制代码代码如下:functiongetParam(paramName){paramValue="";isFound=false;if(th...

复制代码 代码如下:

function getParam(paramName) {

paramValue = "";

isFound = false;

if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) {

arrSource = unescape(this.location.search).substring(1, this.location.search.length).split("&");

i = 0;

while (i < arrSource.length && !isFound) {

if (arrSource[i].indexOf("=") > 0) {

if (arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase()) {

paramValue = arrSource[i].split("=")[1];

isFound = true;

}

}

i++;

}

}

return paramValue;

}

如:http://www.jb51.net/UserQuery.aspx?id=202

getParam("id")为202

【JS获取URL中的参数数据】相关文章:

JavaScript实现表格点击排序的方法

JS实现动态生成表格并提交表格数据向后端

js兼容火狐获取图片宽和高的方法

如何取得中文输入的真实长度?

简单获取键盘的KeyCode

jQuery获取字符串中出现最多的数

网页中移动的广告效果 鼠标悬停

详解AngularJS中的表达式使用

JavaScript获取两个数组交集的方法

JavaScript中的this机制

精品推荐
分类导航