j

jQuery Filter - 폼 필터 Form Filter

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

폼 필터
폼 필터는 형식(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건
+
제목 글쓴이 날짜 조회
13-07-14 조회 5,390
13-07-14 조회 5,359
13-07-14 조회 4,639
13-07-14 조회 4,238
13-07-14 조회 4,094
13-07-14 조회 4,163
13-07-14 조회 4,875
13-07-14 조회 4,525
13-07-14 조회 4,310
13-07-14 조회 5,354
13-07-14 조회 5,230
13-07-14 조회 5,024
13-07-14 조회 4,729
13-07-14 조회 5,390
13-07-13 조회 3,568
13-07-01 조회 5,610
13-07-01 조회 5,754
13-07-01 조회 3,845
13-07-01 조회 5,201
13-05-27 조회 3,947
13-05-21 조회 4,852
13-05-02 조회 1만
13-04-29 조회 5,176
13-04-15 조회 5,439
13-04-13 조회 6,328
13-02-27 조회 3,825
13-02-26 조회 6,430
13-02-12 조회 5,013
13-02-01 조회 2.3만
13-01-23 조회 3,388
13-01-09 조회 7,988
13-01-07 조회 4,919
13-01-07 조회 3,636
13-01-04 조회 1.3만
13-01-03 조회 1.2만
12-12-31 조회 6,127
12-12-27 조회 4,424
12-12-27 조회 4,074
12-12-27 조회 8,708
12-12-18 조회 3,606
12-12-12 조회 3,665
12-12-12 조회 6,646
12-12-12 조회 8,119
12-12-05 조회 5,240
12-12-01 조회 6,647
12-11-22 조회 4,586
12-11-09 조회 5,411
12-11-09 조회 7,486
12-10-29 조회 4,749
12-10-16 조회 6,292
12-10-09 조회 5,267
12-09-02 조회 4,444
12-09-01 조회 3,536
12-08-30 조회 4,200
12-08-30 조회 4,194
12-08-28 조회 3,521
12-08-21 조회 7,137
12-08-20 조회 3,661
12-08-18 조회 5,056
12-08-18 조회 3,427
12-08-11 조회 3,587
12-08-09 조회 3,689
12-08-07 조회 3,617
12-08-07 조회 4,203
12-08-01 조회 4,544
12-08-01 조회 4,347
12-07-20 조회 9,817
12-07-17 조회 4,106
12-07-15 조회 3,901
12-07-10 조회 4,200
12-07-09 조회 6,918
12-07-05 조회 3,249
12-07-04 조회 3,412
12-06-30 조회 5,673
12-06-28 조회 3,743
12-06-20 조회 3,878
12-06-16 조회 3,154
12-06-14 조회 3,843
12-06-07 조회 3,848
12-06-06 조회 6,108
12-05-27 조회 4,398
12-05-25 조회 3,179
12-05-25 조회 3,001
12-05-24 조회 3,064
12-05-24 조회 4,508
12-05-23 조회 3,871
12-05-22 조회 6,482
12-05-15 조회 3,827
12-05-15 조회 3,612
12-05-14 조회 3,039
12-05-12 조회 3,510
12-05-11 조회 6,957
12-05-07 조회 4,409
12-04-28 조회 3,616
12-04-25 조회 5,235
12-04-15 조회 3,832
12-04-12 조회 4,670
12-04-11 조회 3,417
12-04-08 조회 3,227
12-03-21 조회 6,351