... la pagina completa:

codice:
<html>
<head>
<title>pierchi</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script language="JavaScript">

function ModificaValore(nome,azione) {
 var valore=parseInt(nome.value);
 if (azione=="+") valore++;
 else valore--;
 nome.value=valore;
}


</script>

</head>

<body>
<form>
<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="-">
</form>
</body>
</html>
A me va tutto bene... :master: