php,htm,怎么限制表单长度、内容?

如题。我写了个用户注册的框。怎么把用户名、密码限制在6-12个字符内?... 如题。我写了个用户注册的框。怎么把用户名、密码限制在6-12个字符内? 展开
 我来答
windblast
推荐于2016-06-29 · 知道合伙人软件行家
windblast
知道合伙人软件行家
采纳数:5633 获赞数:13617
毕业于空军第一航空学院电子专业,1991年开始接触电脑,从事多年计算机编程,具有较丰富的经验。

向TA提问 私信TA
展开全部
一般来说,这种功能编写js代码来完成效果好于用php编写,以下是一个相对比较完整的用户注册示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>注册</title>
<script language="javascript">
function validate_required(field,alerttxt)
{
with (field)
{
if (value==null||value=="")
{alert(alerttxt);return false}
else {return true}
}
}
function validate_username(field,alerttxt)
{
with (field)
{
apos=value.length

if (apos<6||apos>12)
{alert(alerttxt);return false}
else {return true}
}
}
function validate_pass(field,alerttxt)
{
with (field)
{
apos=value.length

if (apos<6||apos>10)
{alert(alerttxt);return false}
else {return true}
}
}
function validate_form(thisform)
{
with (thisform)
{

if (validate_required(username,"用户名不能为空!")==false)
{fname.focus();return false}
if (validate_required(password,"密码不能为空!")==false)
{Password.focus();return false}
if (validate_pass(password,"密码不能小于6位或大于10位!")==false)
{password.focus();return false}
if (validate_username(username,"用户名不能小于6位或大于10位!")==false)
{username.focus();return false}
}
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" onsubmit="return validate_form(this)" action="reg.php">
<table width="344" height="136" border="0" align="center" cellpadding="2" cellspacing="2">
<td width="55" height="35" align="right">用户:</td>
<td width="275"><input type="text" name="username" id="username" width="150" /></td>
</tr>
<tr>
<td align="right">密码:</td>
<td height="35"><input type="password" name="password" id="password" width="150" /></td>
</tr>
<tr>
<td height="45" colspan="2" align="center"><input type="submit" value="注册" /> </td>
</tr>
</table>
</form>
</body>
</html>
王海宇李宏永
2012-04-24 · 超过15用户采纳过TA的回答
知道答主
回答量:101
采纳率:0%
帮助的人:26.3万
展开全部
直接给文本框添加属性maxlength
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式