function check()
{
with(formwrite)
{
if(fName.value=="")
{
alert("姓名不能为空");
fName.focus();
return false;
}
if(mail.value=="")
{
alert("邮箱不能为空");
mail.focus();
return false;
}
if(content.value=="")
{
alert("内容不能为空");
content.focus();
return false;
}
if(content.value.length>500)
{
alert("内容字符长度不能超过500");
content.focus();
return false;
}
}
}
|