发现了一些关于此的帖子,但没有一个正确回答我的问题。
我想访问我的表中的一些值,并使用jquery在js中使用click函数更改它们。如何在不使用innerHTML的情况下访问它并进行更改?
<table class="tg">
<tr>
<th class="tg-031e">Race</th>
<th class="tg-031e">space holder lol</th>
</tr>
</table>
var tableArray = $("table").children().children();
$("#input img.Majin").click(function() {
//tableArray[0].innerHTML = "";
});
答案 0 :(得分:0)
使用以下查找功能:
$("table").find('classname');