jQuery ID와 Name
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
기본이지만 가끔 헷갈린다.
Name으로 가져올때
$('.myclass').live('click', function() {
alert(this.id); //or alert($(this).attr('id'))); for the jQuery method
});
Id로 가져올때
$('#myclass').live('click', function() {
alert(this.id); //or alert($(this).attr('id'))); for the jQuery method
});
'Web > javascript / jQuery' 카테고리의 다른 글
jQuery에서 string 처리 (split, replace, slice) (6) | 2015.04.13 |
---|---|
jQuery 버튼 여러개의 대화창 만들기 (6) | 2015.04.13 |
[jQuery] div 안에 체크된 체크박스 목록 받아오는 방법 (6) | 2015.04.13 |
[JAVASCRIPT] 날짜 비교 스크립트. (4) | 2015.04.13 |
[jQuery] 현재시간, 오늘날짜 -> string (6) | 2015.04.13 |