1
我有一個編輯用戶表單:Safari瀏覽器覆蓋編輯用戶表單上的電子郵件和密碼字段
<form method="post" action="index.php" />
Email:
<input type="text" name="email" value="[email protected]" />
Password:
<input type="password" name="password" value="thesavedpassword" />
</form>
Safari瀏覽器重寫我的預先填充的用戶名和密碼給我,所以我加了所有的自動完成選項 - 這沒有工作。
閱讀這裏,我聽說readonly已經爲一些工作,所以我也嘗試過,但仍然無法正常工作。這裏是代碼看起來像什麼:
<form method="post" action="index.php" autocomplete="off" />
Email:
<input type="text" name="email" value="[email protected]"
autocomplete="off" readonly onfocus="this.removeAttribute('readonly');" />
Password:
<input type="password" name="password" value="thesavedpassword"
readonly autocomplete="off" onfocus="this.removeAttribute('readonly');" />
</form>
我真的不知道該從哪裏出發!爲什麼Safari會覆蓋已經填入的字段?
非常感謝提前!