加载中...

[attribute~=value]


概述    attributeContainsWord selector

返回值:Array<Element(s)>

描述:选择指定属性用空格分隔的值中包含一个给定值的元素。

  • V : 1.0jQuery( "[attribute~='value']" )

    attribute: 一个属性名.

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

这个选择器测试属性值中的每个单词字符串,其中“word”是一个由空白分隔的字符串定义的。如果测试字符串恰好等于任何一个字词这个选择器将选择。

示例

实例

查找所有属性中含有 'man' 这个单词的文本框,并且修改其文本值。

<!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>
运行一下
还没有评论.