폼 필터
폼 필터는 형식(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로 관련 요소의 집합을 선택 할 수 있습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 453 | ||
| 7929 | 9년 전 | 388 | ||
| 7928 | 9년 전 | 466 | ||
| 7927 | 9년 전 | 379 | ||
| 7926 | 9년 전 | 688 | ||
| 7925 | 9년 전 | 404 | ||
| 7924 | 9년 전 | 386 | ||
| 7923 | 9년 전 | 380 | ||
| 7922 | 9년 전 | 414 | ||
| 7921 | 9년 전 | 433 | ||
| 7920 | 9년 전 | 343 | ||
| 7919 | 9년 전 | 352 | ||
| 7918 | 9년 전 | 507 | ||
| 7917 | 9년 전 | 358 | ||
| 7916 | 9년 전 | 446 | ||
| 7915 | 9년 전 | 454 | ||
| 7914 | 9년 전 | 467 | ||
| 7913 | 9년 전 | 633 | ||
| 7912 | 9년 전 | 466 | ||
| 7911 | 9년 전 | 398 | ||
| 7910 | 9년 전 | 445 | ||
| 7909 | 9년 전 | 551 | ||
| 7908 | 9년 전 | 488 | ||
| 7907 | 9년 전 | 429 | ||
| 7906 | 9년 전 | 444 | ||
| 7905 | 9년 전 | 410 | ||
| 7904 | 9년 전 | 403 | ||
| 7903 | 9년 전 | 400 | ||
| 7902 | 9년 전 | 590 | ||
| 7901 |
|
9년 전 | 767 | |
| 7900 | 9년 전 | 648 | ||
| 7899 | 9년 전 | 431 | ||
| 7898 | 9년 전 | 428 | ||
| 7897 | 9년 전 | 388 | ||
| 7896 | 9년 전 | 401 | ||
| 7895 | 9년 전 | 519 | ||
| 7894 | 9년 전 | 432 | ||
| 7893 | 9년 전 | 405 | ||
| 7892 | 9년 전 | 444 | ||
| 7891 | 9년 전 | 807 | ||
| 7890 | 9년 전 | 1231 | ||
| 7889 | 9년 전 | 766 | ||
| 7888 |
limsy1987
|
9년 전 | 578 | |
| 7887 | 9년 전 | 607 | ||
| 7886 | 9년 전 | 497 | ||
| 7885 | 9년 전 | 467 | ||
| 7884 | 9년 전 | 459 | ||
| 7883 | 9년 전 | 462 | ||
| 7882 | 9년 전 | 523 | ||
| 7881 | 9년 전 | 495 | ||
| 7880 | 9년 전 | 618 | ||
| 7879 | 9년 전 | 503 | ||
| 7878 | 9년 전 | 1276 | ||
| 7877 | 9년 전 | 809 | ||
| 7876 | 9년 전 | 546 | ||
| 7875 | 9년 전 | 614 | ||
| 7874 |
|
9년 전 | 830 | |
| 7873 | 9년 전 | 551 | ||
| 7872 | 9년 전 | 715 | ||
| 7871 | 9년 전 | 530 | ||
| 7870 | 9년 전 | 648 | ||
| 7869 | 9년 전 | 467 | ||
| 7868 | 9년 전 | 504 | ||
| 7867 | 9년 전 | 501 | ||
| 7866 | 9년 전 | 559 | ||
| 7865 | 9년 전 | 499 | ||
| 7864 | 9년 전 | 562 | ||
| 7863 | 9년 전 | 553 | ||
| 7862 | 9년 전 | 517 | ||
| 7861 | 9년 전 | 688 | ||
| 7860 | 9년 전 | 666 | ||
| 7859 | 9년 전 | 444 | ||
| 7858 | 9년 전 | 746 | ||
| 7857 | 9년 전 | 1136 | ||
| 7856 | 9년 전 | 567 | ||
| 7855 | 9년 전 | 800 | ||
| 7854 | 9년 전 | 753 | ||
| 7853 | 9년 전 | 646 | ||
| 7852 | 9년 전 | 565 | ||
| 7851 | 9년 전 | 557 | ||
| 7850 | 9년 전 | 634 | ||
| 7849 | 9년 전 | 400 | ||
| 7848 | 9년 전 | 469 | ||
| 7847 | 9년 전 | 711 | ||
| 7846 | 9년 전 | 498 | ||
| 7845 | 9년 전 | 467 | ||
| 7844 | 9년 전 | 438 | ||
| 7843 | 9년 전 | 475 | ||
| 7842 | 9년 전 | 460 | ||
| 7841 | 9년 전 | 429 | ||
| 7840 | 9년 전 | 442 | ||
| 7839 | 9년 전 | 485 | ||
| 7838 | 10년 전 | 552 | ||
| 7837 | 10년 전 | 384 | ||
| 7836 | 10년 전 | 442 | ||
| 7835 | 10년 전 | 518 | ||
| 7834 |
|
10년 전 | 1227 | |
| 7833 | 10년 전 | 487 | ||
| 7832 | 10년 전 | 462 | ||
| 7831 | 10년 전 | 624 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기