El código es este:
index.html
Código:
Lo que intento hacer es que si escribes una a se cambie de color, cosa que hace solo un parpadeo ¿por que me hace eso?<html> <head> <title>Prueba</title> <script type="text/javascript"> function prueba() { var ina=document.getElementById('a').value; if(ina=='a') { a.style.backgroundColor = 999999; } } </script> </head> <body> <form action="index.html" method="post" onSubmit="prueba();"> <input type="text" id="a"> <input type="submit" value="Enviar"> </form> </body> </html>
Un saludo