$this.find(":input").bind("click",function (){
var _this = $(this).attr("name")
var _this_val = $(this).val()
var num_text = /^\d{1,16}$/;
var password = /^[\@A-Za-z0-9\!\#\$\%\^\&\*\.\~]{6,22}$/;
var _this_name = {num_text:"username", password:"password", three:"cerificationcode"};
$.each(_this_name,function(key,val){
if(_this == val){
console.log(key)
if(key.test(_this_val)){
alert(" 对了对了");
}else{
alert("错误错误了");
}
}
})
})
好像是第二个 if 的 key 不被 jquery 识别变成变量,浏览器就一直在报错
html:52 Uncaught TypeError: key.test is not a function(…)