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

发布时间:2024-05-17 16:41 发布:上海旅游网

问题描述:

如题。
我的论坛是用动网程序做的,想在该论坛的用户注册项中加入“生日”的必填写项目,怎么设置?

问题解答:

写一个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();
}

热点新闻