336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
jQuery를 사용해 이벤트를 연결하는 가장 기본적인 방법은 bind() 메서드를 사용하는 것이다.
<!DOCTYPE html> <html> <head> <style> .reverse { background: Black; color: White; } </style> <script src="http://code.jquery.com/jquery-1.7.js"></script> <script> $(document).ready(function () { //이벤트를 연결합니다. $('h1').bind('click', function () { $(this).html(function (index, html) { return html + '+'; }); }); //이벤트를 연결합니다. $('h1').bind({ mouseenter: function () { $(this).addClass('reverse'); }, mouseleave: function () { $(this).removeClass('reverse'); } }); }); </script> <title>Untitled Page</title> </head> <body> <h1>Header0</h1> <h1>Header1</h1> <h1>Header2</h1> </body> </html> |
ㅠㅠ 나도 소스코드만 따악 예쁘게 넣고 싶은데 그게 내 맘처럼 안되서 아쉽다.
역시 내 곁에는 표 뿐인가..
'공부 > 자바스크립트 jQuery' 카테고리의 다른 글
글자 애니메이션효과 jquery Lettering (0) | 2012.07.03 |
---|---|
페이스북 graph API를 사용해서 프로필 사진 가져오기 (0) | 2012.06.28 |
jQuery) 지속적 이미지 순서 변경 (문서 객체의 이동) (0) | 2012.03.10 |
jQuery) 필터 선택자를 사용한 테이블 줄무늬 (0) | 2012.03.09 |
jQuery) 속성 선택자 (0) | 2012.03.09 |
댓글