/**
* 获取url参数
* @param name 参数名
* @returns 值
*/
getQueryString : function (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var result = window.location.search.substr(1).match(reg);
return result ? decodeURIComponent(result[2]) : '';
}
window.location.search : 从问号 (?) 开始的 URL(查询部分)。