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

js取url参数

时间:2016-12-23 13:53:57      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:cape   location   bst   function   match   ice   ret   nbsp   nes   

 function GetQueryString(name)
    {
        var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
        var r = window.location.search.substr(1).match(reg);
        if(r!=null)return  unescape(r[2]); return null;
    }

var my_income_price = GetQueryString("totalMoney");

 

js取url参数

标签:cape   location   bst   function   match   ice   ret   nbsp   nes   

原文地址:http://www.cnblogs.com/cynthia-wuqian/p/6214317.html

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