在动网论坛中如何把“生日”设置为用户必填项目?

来源:百度知道 编辑:UC知道 时间:2024/05/26 10:07:54
如题。
我的论坛是用动网程序做的,想在该论坛的用户注册项中加入“生日”的必填写项目,怎么设置?

写一个JS,先判断生日是否为空,是否符合逻辑,然后再提交!
举个例子吧
<html>
<body>
<form action="..." id="form1">
生日:<input type="text" id=birth ><br>
<input type =button value="提交" onclick="return judge();">
</form>
</body>
</html>

function judge(){
if(form1.birth.value==""){
alert("生日不能为空!")
form1.birth.focus();
return false;
}
form1.submit();
}