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

    1. <small id='ssvwU'></small><noframes id='ssvwU'>

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

    3. 只允许在 JQUERY 类中单击一次

      时间:2023-09-03

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

                <tbody id='3mxe9'></tbody>
              • 本文介绍了只允许在 JQUERY 类中单击一次的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我有一个链接,可以通过 ajax 加载一些内容.

                I have a link that will load via ajax some content.

                我的问题是,我不想删除文本加载评论",我只想在这个类中不允许更多点击.

                My problem is, I don't want to remove the text "Load comments", I just want to not allow more clicks in this class.

                <a href="javascript:;" class="showcomments" id="'.$idf.'">Load comments</a>
                

                jQuery

                var Progressajax = false;
                $(function() {
                     $(".showcomments").click(function(){
                
                               if(Progressajax) return;
                                   Progressajax = true;
                
                    var element = $(this);
                    var id = element.attr("id");
                
                    Progressajax = false;
                           alert("ok");
                           $(data).hide().prependTo('.varload'+id).fadeIn(1000);
                         //$(element).remove();
                        $(element).removeAttr("href");
                        $(element).removeClass('showcomments');
                    }); 
                    });
                

                我只想第一次看到OK.如何删除此类?

                I just want to see OK the first time. How can I remove this class?

                $(element).removeClass('showcomments');
                

                这不行……

                http://jsfiddle.net/qsn1tuk1/

                推荐答案

                使用jQuery的one()函数

                Use jQuery's one() function

                $(".showcomments").one("click", function() {
                

                http://www.w3schools.com/jquery/event_one.asp

                one() 方法为所选元素附加一个或多个事件处理程序,并指定事件发生时要运行的函数.

                The one() method attaches one or more event handlers for the selected elements, and specifies a function to run when the event occurs.

                当使用 one() 方法时,事件处理函数只对每个元素运行一次.

                When using the one() method, the event handler function is only run ONCE for each element.

                这篇关于只允许在 JQUERY 类中单击一次的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:跨域资源共享 (CORS) 是否区分 HTTP 和 HTTPS? 下一篇:什么是“事件发射器"?

                相关文章

                最新文章

              • <small id='rowWF'></small><noframes id='rowWF'>

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

                  1. <legend id='rowWF'><style id='rowWF'><dir id='rowWF'><q id='rowWF'></q></dir></style></legend>
                    • <bdo id='rowWF'></bdo><ul id='rowWF'></ul>
                  2. <tfoot id='rowWF'></tfoot>