Lo he intentado antes, pero no funciona. ¿Hay algún error en el código?Javascript - ¿Cómo programar un contador de clics?
<script type ="text/javascript">
function count()
{
var x = 0;
x += 1;
document.getElementById("counting").value = x;
}
</script>
</head>
<body>
<input type ="button" value = "Click" onclick = "count()"/><br><br>
<input id = "counting" type = "text" />
</body>
'document.getElementById (" contar ") .value = ++ x;' también sería una buena línea simple. –
Quería mantenerlo tan cerca de su código original. Buen trazador de líneas. – barkmadley