我在定位一些没有类的 div 时遇到了一点问题,这些 div 位于表结构中:
<table class="blog" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<div> <--- I want to target this
<table class="some_table_class">
<tbody>
<tr>
<td class="someclass" valign="top">
<div>This div should stay untouched, and every of his potential div children</div>
</td>
</tr>
</tbody>
</table>
</div>
<div></div> <--- I want to target this
<div></div> <--- I want to target this
<div></div> <--- I want to target this
.
.
.
</td>
</tr>
</tbody>
</table>
我试图在 CSS 中做到这一点,.blog td[valign="top"]>div
但这个也影响了第二个 div + 似乎 IE 不明白 [valign="top"] 是什么
所以我想用jQuery为那些div添加一些类
有什么有效的方法可以做到这一点吗?
.blog>tbody>tr>td>div
......我觉得有点奇怪而且用起来很长
谢谢你的任何想法
我忘了..我只能用 jquery 编辑 html 结构,我无权访问 .php / .html 文件