如何在jquery中将文本设置为td

时间:2017-12-30 23:33:20

标签: javascript jquery

如何使用Jquery

将文本值设置为td

我试过了:

$(this).closest('tr').children('td.cmd_old').text() = "naveen";

但这没有帮助

1 个答案:

答案 0 :(得分:4)

您应该将所需的文本作为参数传递,因此它将类似于.text("YOUR TEXT"),例如:

$(this).closest('tr').children('td.cmd_old').text("naveen");

看看.text() official documentation