我正在使用 jquery 系统来验证 html 表单中的输入。在电子邮件字段中,我想显示 validate[required] 或 custom[email] 代表 2 条错误消息(但不能同时显示)。我对 Javascript 不太熟练,但这是我的尝试
<form id="formID1" action="report-problem.asp" name="varsForm1" method="post">
<script language="Javascript">...
function IsEmpty(){
var class = "";
if(document.forms['formID1'].email1.value == "")
{
class='validate[required]';
}
else
{
class= 'validate[custom[email]]';
}
return class;
}
</script>
<td>Email Address</td>
<td class="input" width="302"><input name="email1" type="text" id="email1" class="IsEmpty();" value="" /></td>....
<input name="" id="submitbtn" type="submit" value="Send" />