如果用戶實際點擊'rember頁面密碼'(瀏覽器,而不是網站功能),瀏覽器記住用戶和密碼信息是正常的事情。讓瀏覽器記住動態生成表單中的輸入字段值
我有我產生使用異步調用此登錄表單,像這樣:
$('#container').load('/path/file.php?what=login_form');
在這種形式下,即使我點擊提交的瀏覽器不記得(和自動填充這對我來說)時'是的,記住密碼'。
這是否意味着只有可鏈接的頁面表單纔會被記住?
編輯 - 輸出例如
<div class="caja loginBox">
<form action="index.php" method="post" name="sesion" id="sesion">
<h1>Inicio de sesion</h1><h2>Usuario</h2>
<input type="text" id="nombre" name="nombre"/>
<h2>Password</h2><input type="password" id="pass" name="pass"/><button type="submit" name="inicio">Entrar</button>
</form> </div>
你可以發佈'/path/file.php?what = login_form'' HTML輸出嗎? – 2012-02-11 21:21:48
這是標準行爲。所以這就是我們使用動態生成的登錄表單的原因,如果我們希望用戶無法存儲pw – 2012-02-11 21:28:42
對不起,你是對的,edditing問題 – 2012-02-11 21:31:16