在CSS中使用正则表达式来匹配数字

时间:2015-04-23 01:22:55

标签: css regex

我有一堆行有ID包含一个数字作为这样的名字:

<tr id="839" class="stock">
...
<tr id="2493" class="stock">
...
<tr id="4156" class="stock">
...

我申请时,我的CSS规则失败了:

tr[id=^['[0-9]'] {
//CSS rules goes here
}

1 个答案:

答案 0 :(得分:1)

根据您的示例,您最好将其定位为

tr.stock {}

注意:IDs shouldn't start with a number

JQuery也可以是一个选项:jQuery selector regular expressions