OPEN between Secret

15.1.29 jQuery 이 벤 트 ! 본문

java/Java script & jQuery

15.1.29 jQuery 이 벤 트 !

해가꿈꾸는달 2015. 1. 29. 11:23
반응형

( 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