jQuery ~ hide table example

這個範例是當table裡面沒東西~~~~~

就把他hide~~~~並把前面的title (div)也hide

感謝張搞Q_Q



Javascript
$(document).ready(function()
{
$('.list').each(function()
{
if($(this).find('tr').length == 1)
{
$(this).add($(this).prev()).hide();
}
});

});


HTML
<div class="product_title">'.$product_name.'</div>
<table border="1" class="list" cellspacing="0" >
<tr class="top">
<td>Type</td>
<td>Name</td>
<td>Date</td>
<td>Download</td>
</tr>
</table>

沒有留言: