描述:匹配所有已勾选或者已选中的元素。
增补版本:1.0jQuery( ":checked" )
:checked
选择器只对勾选框、单选钮以及select
元素的选项起作用。
若要检索select
元素被选中的选项,请使用:selected
选择器。
确定选中了多少输入元素。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<title>checked demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<input type="checkbox" name="newsletter" value="Hourly" checked="checked">
<input type="checkbox" name="newsletter" value="Daily">
<input type="checkbox" name="newsletter" value="Weekly">
<input type="checkbox" name="newsletter" value="Monthly" checked>
<input type="checkbox" name="newsletter" value="Yearly">
var countChecked = function() {
var n = $( "input:checked" ).length;
$( "div" ).text( n + (n === 1 ? " is" : " are") + " checked!" );
$( "input[type=checkbox]" ).on( "click", countChecked );
|
演示:
标识被勾选中的单选钮。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<title>checked demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<input type="radio" name="fruit" value="orange" id="orange">
<label for="orange">orange</label>
<input type="radio" name="fruit" value="apple" id="apple">
<label for="apple">apple</label>
<input type="radio" name="fruit" value="banana" id="banana">
<label for="banana">banana</label>
$( "input" ).on( "click", function() {
$( "#log" ).html( $( "input:checked" ).val() + " is checked!" );
|
演示: