일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- 국회의원 & 높으신 분들 어록
- https://minkwon4.tistory.com/161
- Today
- Total
OPEN between Secret
15.1.29 jQuery 이 벤 트 ! 본문
( 1 ) 이벤트 기본 연결
1)
$(selector).on(eventName, function(event) {} )
2)
$(selector).on(object)
ex)
<script>
$(document).ready(function(){
$('h1').on('click',function(){
$(this).html(function(index, html){
return html + '+';
});
});
$('h1').on({
mouseenter: function (){
$(this).addClass('reverse');
},
mouseleave: function (){
$(this).removeClass('reverse');
}
});
});
</script>
</head>
<body>
<h1>Header-0</h1>
<h1>Header-1</h1>
<h1>Header-2</h1>
</body>
----------> h1 태그에 클릭 하면 +가 추가되고 위에 올려놓으면 색이 반전되도록 하는것
( 2 ) 매개변수 context
<script>
$(document).ready(function(){
$('div').click(function(){
var header = $('h1', this).text();
var paragraph = $('p', this).text();
});
})
</script>
-----> this 가 있기 때문에 선택한 'div'에 대해서만 내용이 저장된다?
출처 : 모던 웹을 위한 javascript + jquery 입문
'java > Java script & jQuery' 카테고리의 다른 글
15.1.30 토비의 스프링 시작! (0) | 2015.01.30 |
---|---|
15.1.29 Ajax (0) | 2015.01.29 |
15.01.28 jQuery 문서 객체 조작 메소드 (0) | 2015.01.28 |
15.1.8 객체 (0) | 2015.01.08 |
15.1.8 객체 마지막 (0) | 2015.01.08 |