event.data
event.data
설명 : 현재 실행 핸들러가 바인드 될 때 이벤트 메소드에 전달되는 데이터의 선택적 객체입니다.
예:
for루프 내 i에서 .on()메서드 의 값을 전달 하여 현재 반복 값이 보존되도록합니다.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>event.data demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button> 0 </button>
<button> 1 </button>
<button> 2 </button>
<button> 3 </button>
<button> 4 </button>
<div id="log"></div>
<script>
var logDiv = $( "#log" );
for ( var i = 0; i < 5; i++ ) {
$( "button" ).eq( i ).on( "click", { value: i }, function( event ) {
var msgs = [
"button = " + $( this ).index(),
"event.data.value = " + event.data.value,
"i = " + i
];
logDiv.append( msgs.join( ", " ) + "<br>" );
});
}
</script>
</body>
</html>
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4856 | PHP | 7년 전 | 5733 | ||
| 4855 | jQuery | 7년 전 | 3239 | ||
| 4854 | jQuery | 7년 전 | 2228 | ||
| 4853 | jQuery | 7년 전 | 2832 | ||
| 4852 | MySQL | 7년 전 | 2995 | ||
| 4851 | jQuery | 7년 전 | 2341 | ||
| 4850 | jQuery | 7년 전 | 2571 | ||
| 4849 | jQuery | 7년 전 | 4310 | ||
| 4848 | PHP |
|
7년 전 | 4248 | |
| 4847 | jQuery | 7년 전 | 4021 | ||
| 4846 | jQuery | 7년 전 | 2635 | ||
| 4845 | jQuery | 7년 전 | 2153 | ||
| 4844 | jQuery | 7년 전 | 2304 | ||
| 4843 | jQuery | 7년 전 | 3057 | ||
| 4842 | jQuery | 7년 전 | 2900 | ||
| 4841 | jQuery | 7년 전 | 2231 | ||
| 4840 | jQuery | 7년 전 | 1569 | ||
| 4839 | jQuery | 7년 전 | 2469 | ||
| 4838 | jQuery |
이에스씨코리아
|
7년 전 | 2317 | |
| 4837 | jQuery | 8년 전 | 2164 | ||
| 4836 | jQuery | 8년 전 | 2091 | ||
| 4835 | jQuery | 8년 전 | 1826 | ||
| 4834 | jQuery | 8년 전 | 1867 | ||
| 4833 | jQuery | 8년 전 | 1995 | ||
| 4832 | jQuery | 8년 전 | 2185 | ||
| 4831 | jQuery | 8년 전 | 2365 | ||
| 4830 | jQuery | 8년 전 | 2632 | ||
| 4829 | jQuery | 8년 전 | 1804 | ||
| 4828 | jQuery | 8년 전 | 2748 | ||
| 4827 | jQuery | 8년 전 | 2287 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기