我在jquery中有这个简单的表单验证:
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>
<script type="text/javascript">
window.onload = (function(){
$("#register_form").validate({
rules: {
username: {
required: true,
minLength: 3
},
password: {
required: true,
minLegth: 3
},
password_2: {
equalTo: "#password",
}
}
});
});
</script>
如果我用户名中的字母数字我在firefox javascript控制台(版本3.6.3)中有这个错误:
“不应使用keyup事件的'charCode'属性 价值毫无意义。“
有没有办法解决它?
答案 0 :(得分:0)
就个人而言,我总是忽略这个错误...这是jQuery normalizing the event的结果(并指定你需要event.which
),它没有造成任何伤害,只有Firebug似乎在乎。