我正在尝试进行内联验证,它可以与警报一起使用,但是我们需要错误消息显示在“提交”按钮的顶部而不是警报框。
JS函数
function validateEmail(username) {
var reg = /^([A-Za-z0-9_-.])+@([A-Za-z0-9_-.])+.([A-Za-z]{2,4})$/;
if (reg.test(username.value) !== false) {
$("#msgbox").fadeTo(200,0.1,function() {
//add message and change the class of the box and start fading
$(this).html('Invalid username / password...').addClass('messageboxerror').fadeTo(900,1);
});
}
return false;
}