送100分求段网页输入框文字限制代码,在线等...
发布网友
发布时间:2024-10-05 17:59
我来回答
共3个回答
热心网友
时间:2024-10-09 00:30
function keyp()
{
var strs=document.getElementById("Content").value
if(strs.length>=10000)
{
document.getElementById("Content").value
return false
}
return true
}
如果有表单提交 onsubmit="return keyp()"
如果没有 可以弄个 setTimeout("keyp()",1000) 让他自己判断
热心网友
时间:2024-10-09 00:21
<script>
function ErrorMsg()
{
if (document.form1.Content.value.length >10000)
{ alert("More。");
return false;
}
}
</script>
<form name="form1">
<TR>
<TD width="4%" height="25"></TD>
<TD class=INDEX_XMALL width="5%" height="25">内 容:</TD>
<TD class=INDEX_XMALL width="90%" height="25"><TEXTAREA name="Content" rows="10" cols="80" id=Content></TEXTAREA> *</TD>
<TD width="1%" height="25"></TD></TR>
<p>
<input type="submit" name="button" id="button" value="提交" onclick="return ErrorMsg();" />
</p>
</form>
热心网友
时间:2024-10-09 00:28
精简一下:
<form name="form1">
<TR>
<TD width="4%" height="25"></TD>
<TD class=INDEX_XMALL width="5%" height="25">内 容:</TD>
<TD class=INDEX_XMALL width="90%" height="25"><TEXTAREA name="Content" rows="10" cols="80" id=Content></TEXTAREA> *</TD>
<TD width="1%" height="25"></TD></TR>
<p>
<input type="submit" name="button" id="button" value="提交" onclick="if (document.form1.Content.value.length >10000){alert('超过10000字');return false;}" />
</p>
</form>