ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

javascript – jQuery选择器| = in $(“[name | =’value’]”)

2019-06-23 14:33:38  阅读:229  来源: 互联网

标签:jquery javascript jquery-selectors


我在一些javascript代码中找到了这个代码段:

var name = "someString";
var s = "[name|='"+name+"']";
var nArr = $JQ(s);

有人能解释一下| =有什么作用吗?

我可以在我的调试工具中看到我收到了一个jQuery元素数组,它们的名字都有someString.但我无法在jQuery文档中找到解释.我错过了什么?

解决方法:

这是attribute contains prefix selector

Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).

$("a[hreflang|='en']").css("color", "green");
a {
  display: block;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<a href="example.html" hreflang="en">Some text</a>
<a href="example.html" hreflang="en-UK">Some other text</a>
<a href="example.html" hreflang="english">will not be selected</a>

此选择器已引入CSS规范中以处理语言属性.

W3

Represents an element with the att attribute, its value either being exactly “val” or beginning with “val” immediately followed by “-” (U+002D). This is primarily intended to allow language subcode matches (e.g., the hreflang attribute on the a element in HTML) as described in BCP 47 ([BCP47]) or its successor.

标签:jquery,javascript,jquery-selectors
来源: https://codeday.me/bug/20190623/1271814.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有