j

jQuery Filter - 폼 필터 Form Filter

· 2013-07-14 (일) 19:01:42 · 4528

폼 필터
폼 필터는 형식(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. 폼필터의 사용예제]

 

 

06_007.jpg
[예제 1 Selected, Checked를 폼 필터를 이용한 결과 모습]
 
 
 
:enabled, :disabled
사용이 가능하거나, 사용이 불가능한 요소를 선택하여 해당 요소의 집합을 반환합니다.
<input type="text" disabled="disabled" />의  경우 :disabled로, 일반적인 모습일 경우 :enabled로 관련 요소의 집합을 선택 할 수 있습니다.
 
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
14-08-26 조회 3,376
14-08-26 조회 3,534
14-08-26 조회 4,089
14-08-26 조회 3,470
14-08-26 조회 3,694
14-08-26 조회 3,628
14-08-26 조회 3,399
14-08-26 조회 3,489
14-08-26 조회 3,462
14-08-26 조회 3,549
14-08-25 조회 4,015
14-08-16 조회 4,149
14-08-12 조회 4,035
14-08-05 조회 3,854
14-08-04 조회 4,570
14-08-04 조회 3,910
14-08-01 조회 4,985
14-07-29 조회 4,135
14-07-10 조회 4,039
14-07-08 조회 4,679
14-07-08 조회 4,197
14-07-05 조회 3,818
14-05-26 조회 5,350
14-05-26 조회 4,073
14-05-21 조회 4,475
14-05-19 조회 7,424
14-05-17 조회 6,735
14-04-30 조회 7,130
14-04-27 조회 4,556
14-04-26 조회 4,727
14-04-13 조회 4,811
14-04-13 조회 4,077
14-03-25 조회 6,414
14-03-25 조회 4,079
14-03-12 조회 3,895
14-03-12 조회 5,303
14-02-24 조회 4,615
13-12-27 조회 3,941
13-11-18 조회 4,252
13-11-18 조회 6,541
13-10-17 조회 4,556
13-10-03 조회 6,207
13-10-02 조회 4,110
13-09-29 조회 4,612
13-09-29 조회 3,956
13-09-17 조회 3,754
13-09-11 조회 5,969
13-09-09 조회 4,221
13-09-05 조회 9,297
13-08-23 조회 5,607
13-08-22 조회 5,131
13-08-22 조회 4,503
13-08-22 조회 4,965
13-08-17 조회 5,864
13-08-17 조회 4,094
13-07-11 조회 5,419
13-07-11 조회 4,354
13-07-08 조회 3,931
13-07-04 조회 4,154
13-07-04 조회 4,047
13-07-04 조회 3,934
13-07-03 조회 5,851
13-07-01 조회 3,691
13-07-01 조회 3,601
13-07-01 조회 4,492
13-06-21 조회 6,217
13-06-14 조회 4,782
13-06-11 조회 3,634
13-06-06 조회 5,333
13-06-05 조회 4,092
13-05-11 조회 4,806
13-05-10 조회 4,361
13-05-10 조회 4,617
13-05-10 조회 3,981
13-05-08 조회 4,344
13-05-08 조회 3,612
13-05-08 조회 4,018
13-05-08 조회 5,203
13-04-05 조회 5,998
13-03-31 조회 5,606
13-03-24 조회 3,945
13-03-24 조회 6,052
13-03-23 조회 3,620
13-03-21 조회 3,685
13-03-20 조회 3,728
13-03-20 조회 4,210
13-03-20 조회 3,690
13-03-20 조회 3,841
13-03-20 조회 6,022
13-03-20 조회 4,004
13-03-20 조회 4,705
13-03-19 조회 5,654
13-03-14 조회 3,763
13-03-14 조회 4,195
13-03-14 조회 4,478
13-03-08 조회 4,081
13-03-03 조회 4,512
13-02-24 조회 4,931
13-02-21 조회 4,655
13-02-19 조회 4,572