我试图只操纵这两个 TD。有大量嵌套表位于无法更改的非常旧的代码上。
该表没有类。但我能看到的主要结构是这样的。
<table>
<tr>
<td class="nowrap" "bunch of inline stuff"></td>
<td "bunch of inline stuff">
</tr>
</table>
这就是我能看到的。其余的就在里面,我真的不在乎,但它都是嵌套的表。
我希望能够仅更改这两个 td 的所有“内联内容”,但我似乎尝试的所有内容都通过嵌套的内容运行。
任何帮助,将不胜感激。如果你能告诉我我做错了什么,那就太好了。
这是我已经尝试过的一切
//$('#main_content_wrapper table:first tbody tr td:nth-child(1)').attr('width','240').attr('id','ezweb_lhr').css('background','lime');
//$("#main_content_wrapper table:first td:nth-child(1)").attr('width','240').attr('id','ezweb_lhr').css('background','lime');
//$("#main_content_wrapper table:first tr:nth-child(1) td:nth-child(1)").attr('width','240').attr('id','ezweb_lhr').css('background','lime');
//$("#main_content_wrapper table tr:nth-child(1) td:nth-child(2)").attr('width','680').attr('id','ezweb_content').css('padding-left','20px').css('background','red');