限制TextArea控件的字节数
<html>
<head>
<script type="text/javascript">
var TextUtil = new Object();
TextUtil.isNotMax = function(oTextArea)
{
return oTextArea.value.length != oTextArea.getAttribute("maxlength");
}
</script>
</head>
<body>
<textarea rows="5" cols="25" maxlength="20" onkeypress="return TextUtil.isNotMax(this)"></textarea>
</body>
</html>
<head>
<script type="text/javascript">
var TextUtil = new Object();
TextUtil.isNotMax = function(oTextArea)
{
return oTextArea.value.length != oTextArea.getAttribute("maxlength");
}
</script>
</head>
<body>
<textarea rows="5" cols="25" maxlength="20" onkeypress="return TextUtil.isNotMax(this)"></textarea>
</body>
</html>
本作品采用 知识共享署名-非商业性使用 2.5 中国大陆许可协议进行许可。 |