如果没有哈希,你能告诉我 location.hash.match 会返回什么吗?
我的代码:
function getHashValue(key) {
return location.hash.match(new RegExp(key + '=([^&]*)'))[1];
}
test = getHashValue('test');
if (test == 'abc') {
//code WORKS
}
else if (test == 'sal') {
//code WORKS
}
else if (test == "") {
//code DOESNT WORKS
}
但它不起作用
我忘了提到我的代码“getHashValue”返回哈希值示例:#test=abc
对不起,我忘了提