|
Или можно так:
<html>
<textarea onkeydown="javascript:count();" id="test" rows=8 cols=25></textarea>
<script>
function count()
{
var str1="";
str1=document.all.test.value;
if (str1.length == 255) alert("Превышенно допустимое число символов")
}
</script>
</html>
__________________
Старые игры раздают здесь
|