jQuery [attribute~=value] 选择器

实例

选择包含特定单词 "nation" 的 name 属性的所有 <input> 元素:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("input[name~='nation']").css("background-color", "yellow");});
  8. </script>
  9. </head>
  10. <body>
  11. <input name="nationality" type="text" value="Chinese">
  12. <input name="nation" type="text" value="English">
  13. <input name="country" type="text" value="Germany">
  14. <input name="anothernation" type="text" value="Norwegian">
  15. <p>该选择器选择 name 属性包含特定字符串 'nation' 的所有 input 元素。</p>
  16. <p><b>备注</b>: 它将只选择包含特定字符串 "nation" 的 name 属性,所以 name 属性值可以是 "nation word",而不是以 "nation" 开头、包含或结尾(如 "nationality"、"xnationx" 或 "anothernation"))。
  17. </body>
  18. </html>

定义与用法

[attribute~=value] 选择器选择具有特定属性的每个元素,该属性的值包含特定字符串。

例如属性值可以是 "nation word",而不是以 "nation" 开头、包含或结尾(如 “nationality”、”xnationx” 或 “anothernation”)。

提示:字符串可以包含空格。

语法

  1. $("[attribute~='value']")
参数描述
attribute必填。指定要查找的属性
value必填。指定字符串值

分类导航