让我们说我有一些
<TR style = "background-color : red ;">
还有一些
<TR>
(需要注意的是,冒号和分号旁边的空格是有意的,因为我正在处理的页面是以这种方式编写的)
现在,这个:
$('.detailtable tr:not([style~="darkgray"])')
工作得很好.但here它说:
[name!=”value”] cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. For better performance in modern browsers,use $(“your-pure-css-selector”).not(‘[name=”value”]’) instead
所以我想知道:我的表达是最好的一个或类似的东西:
$('.detailtable tr').not('[style~="darkgray"]') // this doesn't work!
表现更好?编写最后一个表达式的正确方法是什么?
提前致谢