特性包含单词选择器 [name~=”value”]

attributeContainsWord selector

描述:选择具有指定的特性,且特性值包含了一个给定的单词,用空格隔开的元素。

  • 增补版本:1.0jQuery( "[attribute~='value']" )

    attribute: 一个特性名。

    value: 一个特性值。既可以是有效的标识符,也可以是带引号的字符串。

此选择器针对特性值中的每个单词匹配测试字符串,其中“单词”被定义为用空白隔开的字符串。如果测试字符串精确等于任一个单词,此选择器就匹配了。

示例:

找到所有的输入框,其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>attributeContainsWord demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<input name="man-news">
<input name="milk man">
<input name="letterman2">
<input name="newmilk">
<script>
$( "input[name~='man']" ).val( "mr. man is in it!" );
</script>
</body>
</html>

演示: