:selected 选择器

selected selector

描述:选择所有被选中的元素。

  • 增补版本:1.0jQuery( ":selected" )

:selected选择器只对<option>元素起作用。它对勾选框和单选钮不起作用;对于勾选框和单选钮,请对它们用:checked

补充说明:

  • 因为:selected是一个jQuery扩展,不是CSS规范文档的一部分,所以利用:selected查询不能利用原生querySelectorAll()方法提供的性能提升的优势。为了在使用:selected选择元素时取得最佳性能,请先使用纯CSS选择器选中元素,然后再使用.filter(":selected")

示例:

对<select>附加一个change事件,取得每个选中选项的文本,把它们写到<div>中。然后它触发了针对初始化文本绘制的事件。

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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>selected demo</title>
<style>
div {
color: red;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<select name="garden" multiple="multiple">
<option>Flowers</option>
<option selected="selected">Shrubs</option>
<option>Trees</option>
<option selected="selected">Bushes</option>
<option>Grass</option>
<option>Dirt</option>
</select>
<div></div>
<script>
$( "select" )
.change(function() {
var str = "";
$( "select option:selected" ).each(function() {
str += $( this ).text() + " ";
});
$( "div" ).text( str );
})
.trigger( "change" );
</script>
</body>
</html>

演示: