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

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

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

        切换/切换 div (jQuery)

        时间:2023-09-07

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

          <tfoot id='P6FXu'></tfoot>
              <tbody id='P6FXu'></tbody>
            • <bdo id='P6FXu'></bdo><ul id='P6FXu'></ul>
                <legend id='P6FXu'><style id='P6FXu'><dir id='P6FXu'><q id='P6FXu'></q></dir></style></legend>
                <i id='P6FXu'><tr id='P6FXu'><dt id='P6FXu'><q id='P6FXu'><span id='P6FXu'><b id='P6FXu'><form id='P6FXu'><ins id='P6FXu'></ins><ul id='P6FXu'></ul><sub id='P6FXu'></sub></form><legend id='P6FXu'></legend><bdo id='P6FXu'><pre id='P6FXu'><center id='P6FXu'></center></pre></bdo></b><th id='P6FXu'></th></span></q></dt></tr></i><div id='P6FXu'><tfoot id='P6FXu'></tfoot><dl id='P6FXu'><fieldset id='P6FXu'></fieldset></dl></div>

                • 本文介绍了切换/切换 div (jQuery)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我希望完成一个相当简单的任务(我希望!)

                  I wish to accomplish a fairly simple task (I hope!)

                  我有两个 div 标签和一个锚标签,像这样:

                  I got two div tags and one anchor tags, like this:

                  <a href="javascript:void(0);">forgot password?</a>
                  <div id="login-form"></div>
                  <div id="recover-password" style="display:none;"></div>
                  

                  我希望使用锚标签在两个 div 标签之间切换,隐藏一个并显示另一个,反之亦然.

                  I wish use the anchor tag to toggle between the two div tags, hide the one and show the other and vice versa.

                  如何以最好的方式做到这一点?

                  How can this be done the best way?

                  推荐答案

                  由于最初隐藏了一个 div,您可以简单地调用 为两个 div 切换:

                  Since one div is initially hidden, you can simply call toggle for both divs:

                  <a href="javascript:void(0);" id="forgot-password">forgot password?</a>
                  <div id="login-form">login form</div>
                  
                  <div id="recover-password" style="display:none;">recover password</div>
                  
                  <script type="text/javascript">
                  $(function(){
                    $('#forgot-password').click(function(){
                       $('#login-form').toggle();
                       $('#recover-password').toggle(); 
                    });
                  });
                  </script>
                  

                  这篇关于切换/切换 div (jQuery)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:为什么使用 Switch 时需要 Break? 下一篇:带条件的开关盒

                  相关文章

                • <tfoot id='p591B'></tfoot>

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

                    <legend id='p591B'><style id='p591B'><dir id='p591B'><q id='p591B'></q></dir></style></legend>
                    • <bdo id='p591B'></bdo><ul id='p591B'></ul>

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