记住密码在 Firefox 中有效,但在 IE 和 Chrome 中无效

问题描述 投票:0回答:2
html internet-explorer firefox passwords google-chrome
2个回答
1
投票

您可能想在表单中使用

onsubmit
而不是
onclick
...我不确定在文本框中按 Enter 是否会在所有浏览器上触发
onclick

<form name="login_form" id="login_form" action="" method="POST" onsubmit="handleFunction('action_login', document.getElementById('user_name_id').value, document.getElementById('password_id').value); return false;">
    <div class="login_line">name<input name="user_name" id="user_name_id" size="16" maxlength="16" value="" type="text"></div>
    <div class="login_line">password<input name="password" id="password_id" size="16" maxlength="16" type="password"></div>
    <div class="login_line">&nbsp;<input class="icon icon_accept" value="login" type="submit"></div>
</form> <!-- login_form -->

-2
投票

在你的CSS html中,正文将overflow-x = hide更改为overflow = hide

© www.soinside.com 2019 - 2024. All rights reserved.