多个特性选择器 [name=”value”][name2=”value2″]

attributeMultiple selector

描述:匹配元素匹配所有指定的特性筛选器。

  • 增补版本:1.0jQuery( "[attributeFilter1][attributeFilter2][attributeFilterN]" )

    attributeFilter1: 一个特性筛选器。

    attributeFilter2: 另一个特性筛选器,进一步缩小选区。

    attributeFilterN: 根据需要设置更多的特性筛选器。

示例:

找到所有的具有id特性的输入框,其name特性以man结束,并设置它们的值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>attributeMultiple demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<input id="man-news" name="man-news">
<input name="milkman">
<input id="letterman" name="new-letterman">
<input name="newmilk">
<script>
$( "input[id][name$='man']" ).val( "only this one" );
</script>
</body>
</html>

演示: