2015-10-14 46 views

回答

0

從你說的話我猜你的問題是瀏覽器已經記住你的詳細信息,這是在大多數現代瀏覽器中使用的自動完成feture。

你可以像這樣與autocomplte屬性禁用它:

<form method="post" action="something.php" autocomplete="off"> 

<input type="text" name="firstName" > 
<input type="submit"> 
</form> 
相關問題