摘要: //获取QueryString的数组function getQueryString(){ var result = location.search.match(new RegExp("[\?\&][^\?\&]+=[^\?\&]+","g")); if(result == null){ return ""; } for(var i = 0; i < result.length; i++){ result[i] = result[i].substring(1); } return result;}//根据Q 阅读全文
posted @ 2012-04-18 16:30 zyswtwang 阅读(3486) 评论(0) 推荐(0) 编辑