http://findfun.tistory.com/422
아래와 같이 type 을 체크할 수도 있다.
$('input[name="name1"], select[name="name1"], textarea[name="name1"]').each(function(){
var t1 = this.type;
if(t1=='text'){
alert(t1);
}else if(t1=='hidden'){
alert(t1);
}else if(t1=='radio'){
alert(t1);
}else if(t1=='checkbox'){
alert(t1);
}else if(t1=='image'){
alert(t1);
}else if(t1=='select-one'){
alert(t1);
}else if(t1=='textarea'){
alert(t1);
}
});
'Local Oriented > jQuery' 카테고리의 다른 글
[모음글] attr 속성 (0) | 2012.08.08 |
---|---|
jQuery 플러그인, Vanity. 슬라이더, 탭, 팁, 페이지, 스팟라잇 등등 (1) | 2012.07.09 |
document ready 와 window load 의 차이 (0) | 2012.07.04 |
jQueryMobile 1.1.0, Sencha Touch 2.0, JMC 1.2.0 비교 (0) | 2012.06.30 |
jQuery 플러그인, 다양한 포맷의 주석달기 annotator (1) | 2012.06.28 |