在 AngularJS 单页应用程序中使用 ng-submit 时,如何让浏览器要求用户记住密码。
我的表格:
<form action="/#/dashboard/login" onsubmit="return false;" ng-submit="login()" name="loginForm">
<input type="text" required id="username" name="username" ng-model="username" autocomplete="on" placeholder="Username" value="">
<input type="password" required id="password" name="password" ng-model="password" autocomplete="on" placeholder="Password" value="">
<button type="submit" class="btn">Submit</button>
</form>
有任何想法吗?
更新
我刚刚添加了让浏览器识别表单并欺骗它记住密码的操作。(这显然没有用。)没有动作,表单可以正常工作。onsubmit="return false;"
阻止执行操作。只有在ng-submit
做任何事情。