4

Firefox 和 IE 要求我保存密码。为什么 Chrome 不问我?我必须改变什么?

<body>
    <form action="" name="formlogin" id="formlogin">
        Username: <input type="text" name="username" id="username" />   
        Password: <input type="password" name="password" id="password"/> 
        <input type="submit" name="Submit" value="Submit" />
    </form>
</body>
4

2 回答 2

0

您的表单需要一个目的地。只需分配action。例如创建一个名为“test.html”的文件,然后:

<body>
    <form action="test.html" name="formlogin" id="formlogin">
        Username: <input type="text" name="username" id="username" />    
        Password: <input type="password" name="password" id="password"/> 
        <input type="submit" name="Submit" value="Submit" />
    </form>
</body>
于 2014-03-29T21:24:25.963 回答
-1

我相信这个问题已经在这里解决了。

<form name="formlogin" id="formlogin" action="" method="POST" onsubmit="handleFunction('action_login', document.getElementById('username').value, document.getElementById('password').value); return false;">
        Username: <input name="username" id="username" size="16" maxlength="16" value="" type="text">
        Password: <input name="password" id="password" size="16" maxlength="16" type="password">
        <input type="submit" name="submit" value="Submit">
</form> <!-- login_form -->
于 2013-03-15T12:04:53.943 回答