<form ...>
<input type="text" name="campo1" ...>
<input type="button" value="cancella 1" onclick="this.form.campo1.value='';">
...
<input type="text" name="campo2" ...>
<input type="button" value="cancella 2" onclick="this.form.campo2.value='';">
...
</form>