a [href $ = fgh.html]选择器中$的含义是什么

时间:2012-05-14 19:56:38

标签: jquery

 a[href$=fgh.html] 

这里的$意味着什么。  有没有办法更多地了解符号?

4 个答案:

答案 0 :(得分:3)

这意味着“以{em> fgh.html ”结尾的<a> href属性。您可以找到complete CSS3 selectors reference here

答案 1 :(得分:2)

这是一个ends with jQuery选择器,因此它匹配以href结尾的所有fgh.html

有关可能的选择器的更多信息,请参阅:

http://api.jquery.com/category/selectors/

答案 2 :(得分:0)

表示a标记的href以fhg.html字结尾。

它选择具有指定属性(此处为href)的元素,其值(此处为fgh.html)完全以给定字符串结尾,并且区分大小写。

here is more

答案 3 :(得分:0)

jQuery Selectors

那将会发布你发布的Ends With选择器,以及所有其他选择器。