$('[style*="<style-attr>:<value>"]')
所以我想选择具有相同style-attribute的每个元素来更改它们,但它不会使用该选择器。
答案 0 :(得分:0)
该选择器检查style属性是否恰好是该字符串,因此如果style属性中有其他内容,它将无法工作。它会有点低效,但你可以循环遍历你要检查的每个元素,并为每个元素执行:
if(<my-element>.css("<style:attr>") == "<value") {
//do stuff with the element
}