我见过几乎相似的应用程序但是很难做到这一点。
COL名称
1 2 3 4
我需要切换两个数字,例如因此,如果我将1设置为3,则3必须更改为3 auto。它只发生在第2列。
function
switch (trid, newnumber, oldnumber) {
//change any existing numbers first i.e. do the switch
$("tbody#tbody tr").each(function() {
if ($(this).find("td").eq(0).text() == newnumber) {
//problem pure repetition here. How do i just replace the cell been compared?
$(this).find("td").eq(0).text(oldnumber)
}
$('#' + trid + ' td').eq(1).html(newnumber);
}
上面的代码确实有效,但显然不是马上就行了。我尝试捕获$(this).index,但这是tr的索引而不是特定的td。
表的结构只是tbody tr td
任何输入?