好吧,我有一个包含不同元素的表格,例如文本框、文本区域和复选框。
我正在使用这段代码:
$('#tablaCorrectiva tr').not(':first').each(function() {
alert($(this).children("td:nth-child(1)").val()); //Get BLANK
alert($(this).children("td:nth-child(1)")); // GET "[object Object]"
}
但我没有得到元素的价值。
我试过:
$(this).children("td:nth-child(3)").find('.acc_correc').val()
但我不确定。
请帮忙