我怎样才能span
用“数据”类而不是字符来环绕表格单元格中的数字(并且只有数字)$
?
这是 HTML 标记:
<table>
<tr>
<th>Description</th>
<th>Weight</th>
<th>Views</th>
<th>Cost</th>
</tr>
<tr>
<td>Item description here</td>
<td class="data">37 pounds</td>
<td class="data">132 views</td>
<td class="data">$99.59</td>
</tr>
</table>