标签: jquery jquery-selectors
在以下代码中, $ = 是什么意思?我试过谷歌搜索,但我找不到任何文档。
$("a[href$='.png']").each(function {});
答案 0 :(得分:1)
这意味着锚的href属性值以.png结尾。
.png
Attribute Ends With Selector [name$=”value”]
答案 1 :(得分:0)
选择值结束于...
在您的情况下,整个选择器意味着:选择具有属性' href'以' .png'
https://api.jquery.com/attribute-ends-with-selector/