.not() with .live() not working

后端 未结 2 2017
慢半拍i
慢半拍i 2021-01-23 18:06
jQuery(\"a\").not(\"div#mnuMain a\").live(\"click\", function(event){
                event.preventDefault();
                alert(\"yes I got u\");                 
           


        
2条回答
  •  迷失自我
    2021-01-23 19:05

    jQuery("a:not(div#mnuMain a)").live("click", function(event){
                event.preventDefault();
                alert("yes I got u");                 
        });
    

    try this

提交回复
热议问题