프론트엔드-코드 237

마우스 이벤트

click(); 클릭 dbclick(); 더블 클릭 mouseover(); 마우스 오버 mouseout(); 마우스 아웃 mouseenter(); 마우스 들어왔을때 mouseleave(); 마우스 떠났을 때 mousedown(); 마우스 눌렀을 때 mouseup(); 떼엇을 때 mousemove(); 마우스 움직을 때 hover(); mouseenter(), mouseleave() 하나로 mouseenter(), mouseleave() 와 mouseover()와 mouseout은 같지만 차이점은 mouseout(), mouseover() : 자식요소도 동일한 이벤트 생김 mouseenter(), mouseleave() : 자기만

복사 메서드

$('.item').clone().insertAfter('#box3'); .item을 복사해서 #box3 의 다음형제요소로 붙여넣기 $('#box1 strong').wrap(''); strong을 각각 div로 감싸기 $('#box2 strong').wrapAll(''); strong 모두를 div 하나로 감싸기 $('#box3').wrapInner(''); #box3 안쪽을 div로 한번 감싸고 그 안에 하위요소 넣기 $('#box4').replaceWith('변경됨'); 를 p로 바꾸기 $('변경2').replaceAll('#box5'); replaceWidh랑 똑같은데, 변경2를 먼저 생성 후 #box5와 바꿈