console.log(_GET("appid"));
在 fucn _GET 我需要检查参数是否存在,如果存在则返回它。
function _GET(paramName) {
var hash = window.location.hash; // #appid=1&device&people=
//this needs to be not static
if (/appid=+\w/.test(window.location.hash)) {
//and somehow parse it and return;
}
return false;
}
我希望在控制台中看到 1,如果我 console.log(_GET("device")) 或 people 然后为 null