Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- push오류
- toFixed()
- 1521
- Math.ceil()
- Git
- Excel
- 파일질라다운로드
- selectoptions
- ctrl+/
- calc.plus
- hide
- is_check
- slideUp
- 주석이 먹히지 않을 때
- removeClass
- selectedIndex
- 파일질라설치오류
- SUB함수
- FileZilla설치
- Parent
- 소스트리인증실패
- Math.round()
- Math.floor()
- calc.minus
- FileZilla다운로드
- 파일질라설치
- addClass
- index %
- 증가값
- excel중복체크
Archives
- Today
- Total
잡동사니에도 사랑을
[21.10.13] exam13(02_jQueryEvent) 본문
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="../css/event.css">
</head>
<body>
<h1>this의 사용</h1>
<div id="input">
<h2>단독 개체의 확인</h2>
<div id="singleButton">클릭하세요.</div>
<h2>복수 개체의 확인</h2>
<div>
<button class="multiButton">클릭하세요.</button>
<button class="multiButton">클릭하세요.</button>
<button class="multiButton">클릭하세요.</button>
<button class="multiButton">클릭하세요.</button>
</div>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(function(){
$('#singleButton').click(function(){
$(this).html('감사합니다.'); // 클릭한 자기 자신을 의미한다. this = '#singleButton'
});
$('.multiButton').click(function(){
//$('.multiButton').html('감사합니다.');
$(this).html('감사합니다.'); // 4개 중에서 클릭한 객체만 영향을 받음
var index = $(this).index();
var result = index + "번째 요소를 눌렀습니다.";
$(this).html(result);
});
});
</script>
</body>
</html>
[결과]
728x90
반응형
'JAVA_EE > JQuery' 카테고리의 다른 글
[21.10.14] exam02(03_jQueryAttr) - 클릭 시 index 순으로 이미지 파일 변경 (0) | 2021.10.14 |
---|---|
[21.10.14] exam01(03_jQueryAttr) - attr과 prop의 차이 (0) | 2021.10.14 |
[21.10.13] exam12(02_jQueryEvent) (0) | 2021.10.14 |
[21.10.13] exam11(02_jQueryEvent) (0) | 2021.10.14 |
[21.10.13] exam10(02_jQueryEvent) (0) | 2021.10.14 |