$('img').hover(function(){
$(this).addClass('csty'); --> 현재 이벤트 중인 img에 style 주기
}, function(){
$(this).removeCalss('csty'); --> 현재 이벤트 중인 img에 style 제거하기
})
$('.guess_box').on('click', function(){
$('p').remove(); --> p태그 지우기
$('<p>', {'id' : 'sale'}).appendTo(this); --> id sale인 p태그 생성
ran = (Math.floor)(Math.random()*6+5); --> 랜덤값 생성
$('p').text("할인율 : " + ran + "%"); --> p태그에 랜덤값 입력하기
$(this).unbind('click'); --> 객체의 이벤트 종료
})
'jQuery' 카테고리의 다른 글
jQuery delegate() - 버튼 만들기 (0) | 2020.01.18 |
---|---|
jQuery delegate() - span태그 추가/삭제하기 (0) | 2020.01.17 |
jQuery dblclick() - 더블클릭으로 이미지 숨기기 (0) | 2020.01.16 |
jQuery stopPropagation()사용하기 (0) | 2020.01.15 |
jQuery keyup() - 글자 수 초과되는거 막기 (0) | 2020.01.14 |
댓글