标签: javascript jquery
如何使用Jquery
td
我试过了:
$(this).closest('tr').children('td.cmd_old').text() = "naveen";
但这没有帮助
答案 0 :(得分:4)
您应该将所需的文本作为参数传递,因此它将类似于.text("YOUR TEXT"),例如:
.text("YOUR TEXT")
$(this).closest('tr').children('td.cmd_old').text("naveen");
看看.text() official documentation。
.text()