我想根据条件将负值着色为红色,我现在这样做:
$('td.numeric:contains('-')").addClass("negative")
上面的代码找到类名 numeric 的 td,如果 value 包含“-”,它将类“negative”应用于该 td。
我的问题是,如果我将数字类应用于例如还包含“-”作为分隔符的日期值并使日期变为红色。
所以我的问题是,我怎样才能找到以'-'开头的值的 td?
喜欢
$('td.numeric:startwith('-')").addClass("negative")
CSS
.numeric { text-align:right; }
.negative { text-align:right; color:red; }