JS 禁用和重新啟用a標簽的點擊事件


 function changeHomePageModule(){
          var css = $('#collapseExample').attr('class');
          if(css=='collapse'){
              $("a:not([href='#collapseExample'])").click(function(event) {
                  event.stopPropagation();
                  event.preventDefault();
                    // return false相當於event.stopPropagation() + event.preventDefault()
                });
          }else{
              $("a:not([href='#collapseExample'])").click(function(e) {
                  window.event.returnValue = true;
                });
          }
          
            $('.gridster ul').css("background-color","#EFEFEF"); 
      }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM