js验证表单

    技术2022-06-09  39

    1. 长度限制 <mce:script type="text/javascript"><!-- function test() { if(document.a.b.value.length>50) { alert("不能超过50个字符!"); document.a.b.focus(); return false; } } // --></mce:script> <form name=a οnsubmit="return test()"> <textarea name="b" cols="40" wrap="VIRTUAL" rows="6"> 2. 只能是汉字 3." 只能是英文 路政管理系统应用: //非空验证 function checkoname(){ var casename= document.all['caseInfo.casename'].value; if(casename==""){ alert("案由不能为空!请输入执法机构"); casename.focus(); return false; } return true; } //机构简称非空验证 function checkcpunishbase(){ var cpunishbase=document.all['caseInfo.cpunishbase'].value; if(cpunishbase==""){ alert("处罚依据不能为空!请输入机构简称"); cpunishbase.focus(); return false; } return true; }


    最新回复(0)