Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- di
- Excel
- 구글
- MSSQL
- Generic
- SQL
- It
- jQuery
- JavaScript
- asp.net mvc
- 디자인패턴
- IT관련
- cookie
- 제네릭
- angularJS
- ADO.NET
- iframe
- XML
- 동적dom
- mvc
- 클래스
- IT 관련
- ASP.NET
- csv
- 메소드
- delegate
- c#
- LINQ
- Today
- 444
- Total
- 1,439,385
목록mouseover (1)
심재운 블로그
jQuery 에서 mouseover, mouseleave, click 함께 사용하기
on 함수를 통해 mouseover, mouseleave, click 함수를 함께 기술할 수 있다. 테스트는 여기서... http://jsfiddle.net/ZqfTX/ $('#bg').on({ mouseover: function(){ $(this).css({background: '#F93'}); }, mouseleave: function(){ $(this).css({background: '#CCC'}); }, click: function(){ $(this).off('mouseleave'); } });
프로그래밍/jQuery
2015. 8. 27. 23:28