<bdo id='VcSY2'></bdo><ul id='VcSY2'></ul>

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

    2. <tfoot id='VcSY2'></tfoot>

        jQuery删除属性

        时间:2023-09-08

          <tbody id='14E4D'></tbody>

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

          <legend id='14E4D'><style id='14E4D'><dir id='14E4D'><q id='14E4D'></q></dir></style></legend>
              <bdo id='14E4D'></bdo><ul id='14E4D'></ul>
              <tfoot id='14E4D'></tfoot>

                  <small id='14E4D'></small><noframes id='14E4D'>

                  本文介绍了jQuery删除属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我似乎无法让 removeAttr 工作,我正在使用我在 jQuery 网站上看到的示例.基本上 onclick 我添加属性来禁用一个字段(效果很好)但是当用户再次点击它应该启用有问题的字段.我使用警报来确保 else 块被触发,所以我知道不是这样.

                  I can't seem to get removeAttr to work, I'm using the example I saw on the jQuery site. Basically onclick I add the attribute to disable a field (which works just fine) but when the user clicks again it should enable the field in question. I used alerts to make sure the else block is being fired, so I know that's not it.

                  代码:

                  $('#WindowOpen').click(function (event) {
                    event.preventDefault();
                    $('#forgot_pw').slideToggle(600);
                  
                    if('#forgot_pw') {
                      $('#login_uname, #login_pass').attr('disabled','disabled');
                    } else {
                      $('#login_uname, #login_pass').removeAttr('disabled');
                    }
                  });
                  

                  谢谢.

                  推荐答案

                  都好用这个:

                  $('#WindowOpen').toggle(
                      function()
                      {
                          $('#login_uname, #login_pass').attr("disabled","disabled");     
                      },
                      function()
                      {
                          $('#login_uname, #login_pass').removeAttr("disabled");      
                      });
                  

                  这篇关于jQuery删除属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 javascript/jQuery 从 HTML 字符串中获取属性值 下一篇:Javascript 仅设置数组中最后一项的属性

                  相关文章

                  最新文章

                    <bdo id='L2Jg1'></bdo><ul id='L2Jg1'></ul>

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

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