j

jQuery Filter - 폼 필터 Form Filter

· 12년 전 · 3033

폼 필터
폼 필터는 형식(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로 관련 요소의 집합을 선택 할 수 있습니다.
 
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
12년 전 조회 2,212
12년 전 조회 2,723
12년 전 조회 3,953
12년 전 조회 3,577
12년 전 조회 2,925
12년 전 조회 7,858
12년 전 조회 3,726
12년 전 조회 1,928
12년 전 조회 1,906
12년 전 조회 2,628
12년 전 조회 3,257
12년 전 조회 2,108
12년 전 조회 2,001
12년 전 조회 2,609
12년 전 조회 2,783
12년 전 조회 1,972
12년 전 조회 2,404
12년 전 조회 2,717
12년 전 조회 2,066
12년 전 조회 2,406
12년 전 조회 4,993
12년 전 조회 2,751
12년 전 조회 2,266
12년 전 조회 2,139
12년 전 조회 2,553
12년 전 조회 2,791
12년 전 조회 5,584
12년 전 조회 6,910
12년 전 조회 2,052
12년 전 조회 3,550
12년 전 조회 8,067
12년 전 조회 3,728
12년 전 조회 1.1만
12년 전 조회 1,869
12년 전 조회 2,053
12년 전 조회 2,739
12년 전 조회 3,052
12년 전 조회 2,669
12년 전 조회 3,235
12년 전 조회 3,628
12년 전 조회 4,484
12년 전 조회 3,536
12년 전 조회 3,747
12년 전 조회 3,758
12년 전 조회 2,998
12년 전 조회 2,798
12년 전 조회 2,423
12년 전 조회 2,603
12년 전 조회 3,418
12년 전 조회 3,034
12년 전 조회 2,709
12년 전 조회 3,732
12년 전 조회 3,486
12년 전 조회 3,318
12년 전 조회 3,062
12년 전 조회 3,717
12년 전 조회 2,429
12년 전 조회 2,182
12년 전 조회 1,780
12년 전 조회 1,968
12년 전 조회 2,443
12년 전 조회 3,773
12년 전 조회 3,904
12년 전 조회 2,977
12년 전 조회 2,593
12년 전 조회 2,376
12년 전 조회 1.1만
12년 전 조회 1,973
12년 전 조회 2,997
12년 전 조회 2,520
12년 전 조회 2,989
12년 전 조회 3,202
12년 전 조회 2,391
12년 전 조회 2,969
12년 전 조회 3,633
12년 전 조회 2,711
12년 전 조회 2,687
12년 전 조회 2,649
12년 전 조회 8,845
12년 전 조회 2,749
12년 전 조회 2,601
12년 전 조회 3,392
12년 전 조회 2,361
12년 전 조회 2,896
12년 전 조회 2,517
12년 전 조회 2,494
12년 전 조회 4,272
12년 전 조회 1.2만
12년 전 조회 4,318
12년 전 조회 4,305
12년 전 조회 2,734
12년 전 조회 4,029
12년 전 조회 2,213
12년 전 조회 3,104
12년 전 조회 2,400
12년 전 조회 2,825
12년 전 조회 2,621
12년 전 조회 2,921
12년 전 조회 4,997
12년 전 조회 3,272