您好我已经创建了一个注册页面,我希望对它进行验证,就像我们通常在网站上看到的那样意味着如果任何字段为空白它应该显示为红色,消息不像我们通常使用的对话框或警报可以任何人告诉如何做到这一点。我没有使用表格来创建我使用div的页面。 提前致谢。
答案 0 :(得分:0)
您可以使用javascript验证文本框注册,如
$('#btnReg').click(function(){
if($('#textField').val().length==0){
// show you massage in div here
// like this
$('#MsgError').html("error msg");
// or use alert
alert("error msg");
}
})