반응형
짐 까지 공부한것 중에 많은 고민 안하고 2가지 정도로 만들어 보았다.
뭐.. 별거 없다.
방법 1. mouseover 와 mouseout으로 따로 구현(주석처리한 라인)
방법 2. hover를 이용하여 구현.
더 찾아보면 방법은 많겠지만 난 이것만으로도 만족만족.
뭐.. 별거 없다.
$(document).ready(function () { // $('#imgNext').mouseover(function () { // $(this).attr({ // 'src': 'Images/btn_before.gif' // }); // }); // $('#imgNext').mouseout(function () { // $(this).attr({ // 'src': 'Images/btn_next.gif' // }); // }); $('#imgNext').hover(function () { $(this).attr({ 'src': 'Images/btn_before.gif' }); }, function () { $(this).attr({ 'src': 'Images/btn_next.gif' }); }); });
방법 1. mouseover 와 mouseout으로 따로 구현(주석처리한 라인)
방법 2. hover를 이용하여 구현.
더 찾아보면 방법은 많겠지만 난 이것만으로도 만족만족.
반응형
'Dev > jQuery' 카테고리의 다른 글
[jQuery] 요청한 데이터 로드(load, html, getJSON, getScript, get, post)하기 (0) | 2009.12.17 |
---|---|
[jQuery] Tooltip 구현하기 (0) | 2009.12.17 |
[jQuery] 페이지에 HTML추가 하기 (0) | 2009.12.03 |
[jQuery] jQuery 요소 복사/추가하기(clone, prepend, append, insert) (0) | 2009.12.02 |
[jQuery] jQuery 속성 조작하기 (0) | 2009.12.01 |