我在每行的最后'+'
内有一个带有<td>
按钮的表格。
<input value="+" class="more-290-0 more_button" type="button">
点击该按钮后,相同的行将在点击的行后立即插入,'+' button
用于添加,'X' button
用于删除当前行。点击&#39; +&#39;按钮,'+' button
将被隐藏。
单击'X'
按钮时,将隐藏当前行,并显示前一行前一行内的元素。
我的删除按钮功能如下。当前行正在删除,但前一行的最后<td>
内的最后一个隐藏元素未显示。
我已经提醒获取<td>
元素,但我无法显示隐藏的元素
$(document).on ('click','.remove',function(){
$(this).closest('tr').hide();
if($(this).closest('tr').prev('tr').hasClass
($(this).closest('tr').prop('class')))
{
alert($(this).closest('tr').prev('tr').find('td:eq(4)').html());
//$(this).closest('tr').prev('tr').find('td:eq(4)').children(':hidden').show();
//this is not working
}
});
我的小提琴:Fiddle