摘要: 创建一个Js类:var Request = { QueryString: function (item) { var svalue = location.search.match(new RegExp("[\?\&]" + item + "=([^\&]*)(\&?)", "i")); return svalue ? svalue[1] : svalue; } }引用方法:isaudit = Request.QueryString("isaudit"); 阅读全文
posted @ 2013-08-10 10:50 Thinking.N 阅读(1123) 评论(0) 推荐(0) 编辑