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

JS获取url的参数

时间:2014-06-16 06:29:41      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

bubuko.com,布布扣
<script type="application/javascript">
    function request(paras) {
        var url = location.href;
        var paraString = url.substring(url.indexOf("?") + 1, url.length).split("&");
        var paraObj = {}
        for ( i = 0; j = paraString[i]; i++) {
            paraObj[j.substring(0, j.indexOf("=")).toLowerCase()] = j.substring(j.indexOf("=") + 1, j.length);
        }
        var returnValue = paraObj[paras.toLowerCase()];
        if ( typeof (returnValue) == "undefined") {
            return "";
        } else {
            return returnValue;
        }
    }
</script>
bubuko.com,布布扣

例:http://XXX/mobile/NewsView.htm?action=notice&id=1

action=request("action")

id=request("id")

JS获取url的参数,布布扣,bubuko.com

JS获取url的参数

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/liuswi/p/3784031.html

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