什么" $ ="是在jQuery选择器?

时间:2015-05-08 15:39:24

标签: jquery jquery-selectors

在以下代码中, $ = 是什么意思?我试过谷歌搜索,但我找不到任何文档。

$("a[href$='.png']").each(function {});

2 个答案:

答案 0 :(得分:1)

这意味着锚的href属性值以.png结尾。

Attribute Ends With Selector [name$=”value”]

答案 1 :(得分:0)

选择值结束于...

在您的情况下,整个选择器意味着:选择具有属性' href'以' .png'

结束

https://api.jquery.com/attribute-ends-with-selector/