errore...


manca oggetto...



codice:
<html>
<head><script language="JavaScript">
function ModificaValore(nome,azione) {
 var valore=parseInt(nome.value);
 if (azione=="+") valore++;
 else valore--;
 nome.value=valore;
}</script></head>
<body>

<input type="text" name="campo" value="0">

<input type="button" name="p" onClick="ModificaValore(this.form.campo,'+');" value="+"> <input type="button" name="m" onClick="ModificaValore(this.form.campo,'-');" value="-">
</body>
</html>