일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ConoHa
- 리눅스
- 알뜰폰
- 티스토리
- PHP-FPM
- Apache
- centos
- iptime
- 알리익스프레스
- 보르비스초월
- proxmox
- 아파치
- 가상서버호스팅
- 라즈베리파이2
- KB증권
- 시놀로지
- Rocky
- OpenWrt
- SKT
- 윈도우10
- KB국민카드
- 자바스크립트
- 킹북이초월
- 스톤에이지
- jQuery
- 소비전력
- mysql
- 램가스초월
- php
- 복현오거리
- Today
- Total
맛집 여행 캠핑 일상 생활
jQuery 배열 each click 처리 본문
jQuery 배열 each click 처리
버튼을 다중으로 처리시 유용하게 사용할 수 있다.
i값은 몇번째 배열인지 알수 있는 값이다.
<script>
$(document).ready(function(){
$('.btnColor').each(function(i){
$(this).click(function(e){
e.preventDefault();
alert(i+'번 버튼 '+this.style.background);
});
});
});
</script>
<div>
<button class="btnColor" style="width:20px;height:20px;background:#000000;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#808080;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#FFFFFF;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#FF0000;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#FFA500;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#FFFF00;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#008000;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#0000FF;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#000080;border:1px solid #888888;margin:2px;" />
<button class="btnColor" style="width:20px;height:20px;background:#800080;border:1px solid #888888;margin:2px;" />
</div>
눌러보세요~
'jQuery' 카테고리의 다른 글
jQuery custom Alert 사용하기 (1) | 2016.07.06 |
---|---|
jQuery ajax 비동기식 및 동기식 처리 방식 (0) | 2016.06.20 |
jQuery 팝업 바깥영역 마우스클릭시 팝업 닫기 예제 (0) | 2016.06.14 |
jQuery iframe 안에서 $(window).scroll 이 안 먹힐때 (0) | 2016.05.30 |
jQuery / JAVASCRIPT offset 과 position 차이점 (0) | 2016.03.24 |