Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/google-chrome/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Authentication 如何让Chrome记住表单上的登录?_Authentication_Google Chrome_Login_Automation_Remember Me - Fatal编程技术网

Authentication 如何让Chrome记住表单上的登录?

Authentication 如何让Chrome记住表单上的登录?,authentication,google-chrome,login,automation,remember-me,Authentication,Google Chrome,Login,Automation,Remember Me,在许多网站上,当你通过Chrome登录时,它会提供记住你登录详细信息的功能 我有一个登录表单,但这不会发生 以下是表格: <form action="/login" method="post"> <label for="username">Email Address:</label> <input id="username" name="username" autofocus="autofocus" required="required"

在许多网站上,当你通过Chrome登录时,它会提供记住你登录详细信息的功能

我有一个登录表单,但这不会发生

以下是表格:

<form action="/login" method="post">
    <label for="username">Email Address:</label>
    <input id="username" name="username" autofocus="autofocus" required="required" type="email" size="25" autocomplete="off"/>

    <label for="password">Password:</label>
    <input id="password" name="password" required="required" type="password" size="25" autocomplete="off"/>

    <input type="submit" value="Login">
</form>

电邮地址:
密码:
我假设一定有一些变量或头需要设置来完成这项工作


有人知道它是如何完成的吗?

我从表单中删除了自动完成参数,现在Chrome可以在这里存储用户名和密码。

我从表单中删除了自动完成参数,现在Chrome可以在这里存储用户名和密码。

提供您正在谈论的表单的HTML代码。提供表单的HTML代码你在说什么。