Heim > Fragen und Antworten > Hauptteil
Ich versuche, colSpan
或 rowSpan
大于 1 的所有表格单元格。我知道您可以执行 querySelectorAll('td[colspan="3"]')
auszuwählen, um Zellen auszuwählen, die eine engere Bedingung erfüllen. < /p>
Aber ich brauche so etwas wie querySelectorAll('td[colspan>"1"]')
.
P粉5292450502024-02-18 00:22:37
不可能将条件运算符放入querySelector
中。在您的情况下,如果您想仅使用 CSS 选择器来实现它,那么您可以忽略特定的 colspan
条件并使用 :not
运算符选择其余的条件。
td[colspan]:not(td[colspan = "1"]) { background : red; }
table, th, td {
border: 1px solid black;
}
td[colspan]:not(td[colspan = "1"]) {
background : red;
}
Month
Savings
January
$100
February
$80
Sum: $180