我有这张桌子:
<table>
<thead>
<tr>
<th>Example 1</th>
<th>Example 2</th>
<th>Example 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Example text 1</td>
<td>Example text 2</td>
<td><input type="text" /></td>
</tr>
</tbody>
</table>
我想仅将样式应用于不包含input
标记的tds。
怎么做?