//함수형으로
$(document).ready(function() {
$("#content").on( {
"mouseenter" : function() {
$(this).css("backgroundColor","pink");
},
"mouseleave" : function() {
$(this).css("backgroundColor","white");
}
});
});
//일타쌍피 위에랑 같은 메서드다
$("#content").hover(function() {
$(this).css("backgroundColor","pink");
},function() {
$(this).css("backgroundColor","white");
});
'웹 & 프레임워크' 카테고리의 다른 글
Spring을 이용하면 객체자체 VO를 값으로 보내버릴수있다! (0) | 2014.05.25 |
---|---|
Spring 과 jdbcTemplate을 이용한 예제 queryForObject (0) | 2014.05.25 |
html 에러코드들 (0) | 2014.05.16 |
jQuery 기본 (0) | 2014.05.14 |
jquery 를 이용해 css입히기 (0) | 2014.05.14 |