在常規電子郵件/密碼錶單的情況下,提交的表單向服務器發送POST請求以驗證客戶端憑據。如何告訴瀏覽器成功的身份驗證?
如何告訴瀏覽器身份驗證是否成功?即如何告訴瀏覽器是否記住電子郵件/密碼組合。
這是窗體佈局:
<form action="" method="post">
<fieldset>
<legend>Sign in</legend>
<label>
<span>Email</span>
<input type="text" name="ay[email]">
</label>
<label>
<span>Password</span>
<input type="password" name="ay[password]">
</label>
<input type="submit" value="Sign in">
</fieldset>
</form>
沒有參與這個過程的JavaScript。
我不問如何建立會話。我在問如何觸發瀏覽器機制,詢問用戶是否記住/覆蓋現有的電子郵件/密碼組合。 – Gajus
對不起,你在做表單提交嗎?看起來關於這方面的問題很少。 http://stackoverflow.com/questions/5430129/how-to-make-chrome-remember-password-for-an-ajax-form http://stackoverflow.com/questions/4119385/why-doesnt-chrome-recognize -this-login-form http://stackoverflow.com/questions/2620927/how-to-trigger-saved-password-autofill-in-browsers –
你提到的所有問題都討論了form是使用JavaScript請求提交。 – Gajus