html中,text里最多输入80个字符,然后显示输入了几个字符怎么做?_百度...
发布网友
发布时间:2024-10-24 02:42
我来回答
共2个回答
热心网友
时间:3分钟前
在textbox的keypress事件中写:
1.第一段是只能输入字母和数字。
2..第二段是自能输入字母(大小写)。
if
not
(chr(keyascii)
like
"[a-za-z0-9]
"
or
keyascii
<
32)
then
keyascii
=
0
end
if
if
a<65
or
(a>90
and
a<97)
or
a>122 then
end
if
热心网友
时间:9分钟前
<html>
<head>
<script language="javascript">
function check()
{
var cpText=document.getElementById
('id_text');
var cpSp=document.getElementById("id_sp");
cpSp.innerHTML=cpText.value.length;
}
</script>
</head>
<body>
<form>
<input id="id_text" type="text"
maxlength="8" onpropertychange="check()"/>
</form>
<span id="id_sp"></span>
</body>
</html>