<small id='JvNxE'></small><noframes id='JvNxE'>

<tfoot id='JvNxE'></tfoot>

    • <bdo id='JvNxE'></bdo><ul id='JvNxE'></ul>

    <legend id='JvNxE'><style id='JvNxE'><dir id='JvNxE'><q id='JvNxE'></q></dir></style></legend>

      1. <i id='JvNxE'><tr id='JvNxE'><dt id='JvNxE'><q id='JvNxE'><span id='JvNxE'><b id='JvNxE'><form id='JvNxE'><ins id='JvNxE'></ins><ul id='JvNxE'></ul><sub id='JvNxE'></sub></form><legend id='JvNxE'></legend><bdo id='JvNxE'><pre id='JvNxE'><center id='JvNxE'></center></pre></bdo></b><th id='JvNxE'></th></span></q></dt></tr></i><div id='JvNxE'><tfoot id='JvNxE'></tfoot><dl id='JvNxE'><fieldset id='JvNxE'></fieldset></dl></div>
      2. 记住 passowrd 在 ff 中有效,但在 ie 和 chrome 中无效

        时间:2023-10-21

      3. <i id='R7JIZ'><tr id='R7JIZ'><dt id='R7JIZ'><q id='R7JIZ'><span id='R7JIZ'><b id='R7JIZ'><form id='R7JIZ'><ins id='R7JIZ'></ins><ul id='R7JIZ'></ul><sub id='R7JIZ'></sub></form><legend id='R7JIZ'></legend><bdo id='R7JIZ'><pre id='R7JIZ'><center id='R7JIZ'></center></pre></bdo></b><th id='R7JIZ'></th></span></q></dt></tr></i><div id='R7JIZ'><tfoot id='R7JIZ'></tfoot><dl id='R7JIZ'><fieldset id='R7JIZ'></fieldset></dl></div>

        <small id='R7JIZ'></small><noframes id='R7JIZ'>

            <tbody id='R7JIZ'></tbody>
            • <bdo id='R7JIZ'></bdo><ul id='R7JIZ'></ul>
            • <legend id='R7JIZ'><style id='R7JIZ'><dir id='R7JIZ'><q id='R7JIZ'></q></dir></style></legend><tfoot id='R7JIZ'></tfoot>
                  本文介绍了记住 passowrd 在 ff 中有效,但在 ie 和 chrome 中无效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  It seems that my html login form supports "remember password" in ff but not in ie and chrome. Can anybody tell me why? Here's the code:

                  <form name="login_form" id="login_form" action="" method="POST">
                      <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" onclick="javascript:handleFunction('action_login', document.getElementById('user_name_id').value, document.getElementById('password_id').value); return false;" type="submit"></div>
                  </form> <!-- login_form -->
                  

                  I've checked my settings in Chrome and IE.

                  解决方案

                  You might want to use onsubmit instead of onclick for forms... I'm not sure if pressing Enter on a textbox will fire onclick on all browsers.

                  <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 -->
                  

                  这篇关于记住 passowrd 在 ff 中有效,但在 ie 和 chrome 中无效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在使用 contenteditable div 时模仿密码类型的输入 下一篇:使用 ajax 请求安全地发送密码

                  相关文章

                  <legend id='D9Mba'><style id='D9Mba'><dir id='D9Mba'><q id='D9Mba'></q></dir></style></legend>
                  <tfoot id='D9Mba'></tfoot>
                  1. <small id='D9Mba'></small><noframes id='D9Mba'>

                    • <bdo id='D9Mba'></bdo><ul id='D9Mba'></ul>

                    1. <i id='D9Mba'><tr id='D9Mba'><dt id='D9Mba'><q id='D9Mba'><span id='D9Mba'><b id='D9Mba'><form id='D9Mba'><ins id='D9Mba'></ins><ul id='D9Mba'></ul><sub id='D9Mba'></sub></form><legend id='D9Mba'></legend><bdo id='D9Mba'><pre id='D9Mba'><center id='D9Mba'></center></pre></bdo></b><th id='D9Mba'></th></span></q></dt></tr></i><div id='D9Mba'><tfoot id='D9Mba'></tfoot><dl id='D9Mba'><fieldset id='D9Mba'></fieldset></dl></div>