js匹配url地址中引數 支援中文
function GetQueryString(name) //匹配引數 支援中文
{
var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
var r = decodeURIComponent(window.location.search).substr(1).match(reg);
if(r!=null)return unescape(r[2]); return -1;
}