我在html表的td中有一个按钮。当我点击按钮时,我想在当前行的倒数第二列中输入某些文本。
我知道我可以做到
td:first
或
td:nth-child(3)
但是如何引用当前表的倒数第二列?
<table>
<tr><th>1</th><th>2</th></tr>
<tr><td></td><td><input type='button' class="myButton"></td></tr>
</table>
或者,我可以在列td上放置一个类名,如果这样可以更容易引用它。
答案 0 :(得分:5)