我正在尝试使用 jQuery 从 html 表中的动态行中获取数据。我提到了以下用于创建动态行的代码片段
jQuery函数
$("#madd").click(function(){
if ($("#selected_text").html()!=''){
$(this).closest("tr").clone(true).appendTo("#fmly_dtls").find('input').val('');
}else{
alert('Please save the data');
}
});
表 id 是#fmly_dtls
,所以当我单击添加按钮时,我将行添加到表中。添加 5 行后,我试图从动态行数据中检索该数据。
$("#finalbtn").click(function(){
var membrdt='';
$("#fmly_dtls tr").each(function (i) {
var myValue2 = $(this).closest('tr').find('td:first');
alert($(this).children('td:first').val());
});
#finalbtn
是html按钮。当我点击按钮时。上面检索数据有什么问题吗?
jsfiddle :- JSFIDLE URL