11.04.2013, 22:27
(
Последний раз редактировалось Sellen; 05.10.2013 в 13:56.
)
Contador de Caracteres
Site de Demonstraзгo:
http://sellen.eu5.org/contador.html
Cуdigo
PHP код:
<html>
<head>
<title>Contador de Cйlulas</title>
</head>
<body align="center" background="black.jpg">
<img src="logo.png">
<br /> <br />
<body onload='javascript:document.getElementById("aparecer").innerHTML = document.str.text.value.length'/>
<form name='str'> <textarea name='text' onkeyup='javascript:document.getElementById("aparecer").innerHTML = document.str.text.value.length' cols='150' rows='10'> </textarea> <br />
</form> <br /> <br />
<font color="#00FA9A">
<h2>Este texto tem <a id='aparecer'></a> caracteres.</h2></font>
</body>
</html>
Sellen