폼 필터
폼 필터는 형식(text, checkbox, password, radio, file)을 기반으로 하는 폼 요소를 선택할 때 사용하는 필터로 사용법은 필터와 동일하여, 자세한 설명보다는 아래의 표로 대신 합니다.
|
폼 필터 종류 |
선택 폼 |
|
:button |
<input type=”butto” /> |
|
:checkbox |
<input type=”checkbox” /> |
|
:checked |
<input type=”checkbox” checked=”checked” /> |
|
:disabled |
<input type=”text” disabled=”disabled” /> |
|
:enabled |
<input type=”text” enabled=”enabled” /> |
|
:file |
<input type=”file” /> |
|
:focus |
(1.6 이상에서 지원) |
|
:image |
<input type=”image” /> |
|
:input |
<input> 모든 input 요소 |
|
:password |
<input type=”password” /> |
|
:radio |
<input type=”radio” /> |
|
:reset |
<input type=”reset” /> |
|
:selected |
<select><option selected="selected"></option></select> |
|
:submit |
<input type=”submit” /> |
|
:text |
<input type=”text” /> |
|
:hidden |
<input type=”hidden” /> |
| 표 1. [jQuery 폼 필터의 종류] | |
표에서 보듯이 폼 필터 사용은 매우 간단하여 자세한 설명을 생략하고 필터 중 상태를 체크하는 필터에 대해 알아 보도록 하겠습니다.
:checked , :selected
<input type=”checkbox”/>체크박스, 라디오버튼<input type=”radio” />, 셀렉트<select>의 상태를 확인 하여 선택된 상태 요소들의 집합을 선택 반환합니다.
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jQuery Selector</title> <link href="../Styles/Site.css" rel="stylesheet" type="text/css" /> <style> div,pre { background : #FFF; padding:10px; margin:10px; } table { border:1px solid #AAA; } td { border:1px solid #AAA; width:25px; height:25px; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function () { $(":checked,:selected").css("border", "2px solid red"); $(":selected").css("background", "red"); }); </script> </head> <body style="padding:10px;"> <h2>jQuery 시작 Selector</h2> <p>jQuery에 대한 자세한 내용을 보려면 jquery.com 을 방문하세요.</p> <div> <ul> <li><input type="checkbox" checked="checked" />CheckBox #1 - </li> <li><input type="checkbox" />CheckBox #2</li> <li><input type="checkbox" checked="checked" />CheckBox #3</li> </ul> <select multiple="multiple"> <option>Option #1</option> <option selected="selected">Option #2</option> <option>Option #3</option> </select> </div> </body> </html>
[예제 1. 폼필터의 사용예제]
[예제 1 Selected, Checked를 폼 필터를 이용한 결과 모습]
:enabled, :disabled
사용이 가능하거나, 사용이 불가능한 요소를 선택하여 해당 요소의 집합을 반환합니다.
<input type="text" disabled="disabled" />의 경우 :disabled로, 일반적인 모습일 경우 :enabled로 관련 요소의 집합을 선택 할 수 있습니다.
사용이 가능하거나, 사용이 불가능한 요소를 선택하여 해당 요소의 집합을 반환합니다.
<input type="text" disabled="disabled" />의 경우 :disabled로, 일반적인 모습일 경우 :enabled로 관련 요소의 집합을 선택 할 수 있습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 179 | ||
| 8229 | 9년 전 | 163 | ||
| 8228 |
커네드커네드
|
9년 전 | 200 | |
| 8227 | 9년 전 | 243 | ||
| 8226 | 9년 전 | 259 | ||
| 8225 | 9년 전 | 239 | ||
| 8224 | 9년 전 | 249 | ||
| 8223 | 9년 전 | 220 | ||
| 8222 |
|
9년 전 | 285 | |
| 8221 | 9년 전 | 185 | ||
| 8220 | 9년 전 | 227 | ||
| 8219 | 9년 전 | 199 | ||
| 8218 | 9년 전 | 244 | ||
| 8217 |
star3840
|
9년 전 | 209 | |
| 8216 | 9년 전 | 275 | ||
| 8215 | 9년 전 | 220 | ||
| 8214 | 9년 전 | 329 | ||
| 8213 | 9년 전 | 289 | ||
| 8212 | 9년 전 | 202 | ||
| 8211 | 9년 전 | 371 | ||
| 8210 | 9년 전 | 369 | ||
| 8209 | 9년 전 | 448 | ||
| 8208 | 9년 전 | 337 | ||
| 8207 | 9년 전 | 347 | ||
| 8206 |
|
9년 전 | 290 | |
| 8205 | 9년 전 | 263 | ||
| 8204 | 9년 전 | 253 | ||
| 8203 | 9년 전 | 329 | ||
| 8202 | 9년 전 | 246 | ||
| 8201 | 9년 전 | 280 | ||
| 8200 | 9년 전 | 291 | ||
| 8199 | 9년 전 | 311 | ||
| 8198 | 9년 전 | 276 | ||
| 8197 | 9년 전 | 258 | ||
| 8196 | 9년 전 | 682 | ||
| 8195 | 9년 전 | 268 | ||
| 8194 | 9년 전 | 378 | ||
| 8193 | 9년 전 | 292 | ||
| 8192 | 9년 전 | 304 | ||
| 8191 | 9년 전 | 260 | ||
| 8190 | 9년 전 | 243 | ||
| 8189 | 9년 전 | 302 | ||
| 8188 | 9년 전 | 237 | ||
| 8187 | 9년 전 | 249 | ||
| 8186 | 9년 전 | 248 | ||
| 8185 | 9년 전 | 417 | ||
| 8184 | 9년 전 | 204 | ||
| 8183 | 9년 전 | 412 | ||
| 8182 | 9년 전 | 283 | ||
| 8181 | 9년 전 | 238 | ||
| 8180 | 9년 전 | 807 | ||
| 8179 | 9년 전 | 586 | ||
| 8178 | 9년 전 | 446 | ||
| 8177 |
kiplayer
|
9년 전 | 440 | |
| 8176 | 9년 전 | 472 | ||
| 8175 | 9년 전 | 362 | ||
| 8174 | 9년 전 | 353 | ||
| 8173 | 9년 전 | 441 | ||
| 8172 | 9년 전 | 323 | ||
| 8171 | 9년 전 | 283 | ||
| 8170 | 9년 전 | 404 | ||
| 8169 |
커네드커네드
|
9년 전 | 360 | |
| 8168 | 9년 전 | 440 | ||
| 8167 | 9년 전 | 431 | ||
| 8166 | 9년 전 | 325 | ||
| 8165 | 9년 전 | 267 | ||
| 8164 | 9년 전 | 405 | ||
| 8163 | 9년 전 | 411 | ||
| 8162 | 9년 전 | 393 | ||
| 8161 | 9년 전 | 407 | ||
| 8160 |
|
9년 전 | 629 | |
| 8159 | 9년 전 | 571 | ||
| 8158 | 9년 전 | 368 | ||
| 8157 | 9년 전 | 481 | ||
| 8156 | 9년 전 | 359 | ||
| 8155 | 9년 전 | 365 | ||
| 8154 |
00년생용띠
|
9년 전 | 698 | |
| 8153 | 9년 전 | 336 | ||
| 8152 |
|
9년 전 | 514 | |
| 8151 | 9년 전 | 508 | ||
| 8150 | 9년 전 | 625 | ||
| 8149 |
Jangfolk
|
9년 전 | 481 | |
| 8148 | 9년 전 | 297 | ||
| 8147 | 9년 전 | 478 | ||
| 8146 | 9년 전 | 560 | ||
| 8145 | 9년 전 | 519 | ||
| 8144 | 9년 전 | 488 | ||
| 8143 | 9년 전 | 314 | ||
| 8142 | 9년 전 | 528 | ||
| 8141 | 9년 전 | 475 | ||
| 8140 | 9년 전 | 1039 | ||
| 8139 | 9년 전 | 384 | ||
| 8138 |
전갈자리남자
|
9년 전 | 492 | |
| 8137 | 9년 전 | 525 | ||
| 8136 | 9년 전 | 856 | ||
| 8135 |
|
9년 전 | 896 | |
| 8134 |
PlayPixel
|
9년 전 | 636 | |
| 8133 |
|
9년 전 | 544 | |
| 8132 | 9년 전 | 583 | ||
| 8131 | 9년 전 | 941 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기