JS 获取url参数


        function getQueryString(key){
            var reg = new RegExp("(^|&)"+key+"=([^&]*)(&|$)");
            var result = window.location.search.substr(1).match(reg);
            return result?decodeURIComponent(result[2]):null;
        }

posted @ 2016-08-10 10:05  mrt_yy  阅读(146)  评论(0编辑  收藏  举报