我想提交後清除文本字段。請幫我:(提交後清除表格
<form name ="client" id="client" method="POST" action="index.php" >
<input type="hidden" name="id" id="id" >
<label>name</label>
<input type="text" name="nombre" id="nombre" value=""> <br />
<label>surname</label>
<input type="text" name="apellido" id="apellido"> <br />
<label>age</label>
<input type="text" name="fecha" id="fecha" > <br />
<label>sex</label>
<select name="peso" id="peso" > <br />
<option>male</option>
<option>female</option>
</select> <br />
<input id="submit" type="submit" name="submit" value ="submit"/>
</form>
它看起來像你的文章大多是代碼;請添加更多的細節。 –
Firefox刷新頁面後會記住表單內容。你可以使用javascript手動設置每個輸入的值爲空字符串。 – Plato