<!
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="../js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
var result = "";
// 폼 요소가 있는 만큼 반복하자.
//alert($(':input').size());
$(':input').each(function(index) {
result += "태그명 : " + this.tagName // $(this).get(0).tagName
+ ", type 속성명 : " + $(this).attr('type') + '\n';
});
alert(result);
});
</script>
</head>
<body>
<input type="button" value="Input Button" /><br />
<input type="text" /><br />
<input type="password" /><br />
<input type="checkbox" /><br />
<input type="file" /><br />
<input type="hidden" /><br />
<input type="image" /><br />
<input type="radio" /><br />
<input type="reset" /><br />
<input type="submit" /><br />
<select><option>드롭다운리스트</option></select><br />
<textarea>멀티라인텍스트박스</textarea><br />
<button>버튼</button><br />
</body>
</html>
'Web Programing! > JQuery' 카테고리의 다른 글
[ JQUERY ] 한번만 실행하기 - One (0) | 2012.02.15 |
---|---|
[ JQUERY] 입력창 글 길이 체크 - live (0) | 2012.02.10 |
[ JQUERY ] SRC 변경하기 (0) | 2012.02.09 |
[jquery] onload시 실행하는 함수 (0) | 2012.01.13 |
[JQUERY] 입력후 Form 초기화하기 (0) | 2011.09.06 |
[JQUERY] checkbox 속성 (0) | 2011.09.06 |
[JQUERY] JQuery의 기본 속성 (0) | 2011.09.06 |