1 $(‘#form_1 table tbody‘).find(‘:checkbox:checked‘).each(function(){//查找处于checked状态的checkbox 2 var val = $(this).parent().parent().index(); //找到这个checkbox所在的tr的索引3 $(‘#form_2 table tbody tr‘).eq(val).show(); //在form_2中显示对应索引的tr 4 })
时间: 2024-10-07 15:25:10