我有一個HTML表單發佈到一個單獨的PHP文件。我的問題是每當我在我的文本輸入中包裹表單標籤並重新加載頁面時,我的用戶名文本框的文本爲'localhost',而密碼字段的數據庫密碼爲文本。我真的不知道爲什麼會發生這種情況。這是我的login-ui.html文件的代碼:奇怪的形式行爲
<form action="login.php" method="post" enctype="multipart/form-data">
<div class="login-field">
<input type="text" name="Username" id="txtUsername" placeholder="Username" />
<input type="password" name="Password" id="txtPassword" placeholder="Password" />
<br />
<a href="">
<img src="pics/gears-small-white.png" style="width: 10px; height: auto;" /> Login</a>
<a href="#">
<img src="pics/gears-small-white.png" style="width: 10px; height: auto;" /> Reset Password</a>
</div>
</form>
login.php文件中目前還沒有代碼。
清除緩存和與其他瀏覽檢查?它可能是一個自動填充。 – stevemarvell
嘗試添加'autocomplete =「off」'到'form' http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag – stevemarvell
聽起來像瀏覽器自動填充。 – WebNovice