Jquery에서 동적 요소 바인딩 이벤트

876 단어 jquery

$("#dd").bind("click",function(){ 
        //this          
        alert($(this).attr("ext")); 
      }) 


    $("#" + "dd").bind("click",function(){ 
        //this          
        alert($(this).attr("ext")); 
      }) 

좋은 웹페이지 즐겨찾기