码迷,mamicode.com
首页 > 其他好文 > 详细

常用common方法

时间:2019-06-05 20:06:04      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:type   返回   local   name   OLE   func   turn   com   common   

1.根据url中携带的参数名获取参数值

/**
 * 获取url中的参数
 */
function getUrlParam(name) {
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象
    var r = window.location.search.substr(1).match(reg);  //匹配目标参数
    if (r != null) return unescape(r[2]); return null; //返回参数值
}

用法:url :http://localhost:8003/htmls/xxxxxxxx.html?guid=b3905077-ac9a-b9ba-5ba0-8ad411fa7d69&iType=2

var iType = getUrlParam("iType");

console.log(iType )

常用common方法

标签:type   返回   local   name   OLE   func   turn   com   common   

原文地址:https://www.cnblogs.com/liangpi/p/10981125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!