码迷,mamicode.com
首页 > Web开发 > 详细

JS 获取 路径参数 传入 参数名 截取 & 和 # 之前 字符

时间:2014-11-21 12:08:03      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   on   div   log   

function getQueryStringByName(name) {
    var result = location.search.match(new RegExp("[\?\&]" + name + "=([^\&]+)", "i"));
    if (result == null || result.length < 1) {
        return "";
    }
    return result[1];
}

 

JS 获取 路径参数 传入 参数名 截取 & 和 # 之前 字符

标签:style   blog   io   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/xiaoqi742709106/p/4112486.html

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