2010-10-18 98 views

回答

1

我讓你在這裏快速演示。你沒有說你想保留舊的,因爲他們在BBC網站這樣做,我還珍藏着的特徵了JSFiddle

+0

不,這正是我所要求的10行5中可見的 – heinrich666 2010-10-18 07:38:36

2

只需添加監聽器和使用刪除&追加:

<table id="table"> 
    <tr> 
     <td>foo</td> 
    </tr> 
    <tr> 
     <td>bar</td> 
    </tr> 
</table> 
<span id="plus">+</span> 
<span id="minus">-</span> 

<script type='text/javascript' src='http://code.jquery.com/jquery-latest.min.js'></script> 
<script> 
$(document).ready(function() { 
    $('#minus').click(function(){ 
     $('#table tr:last-child').remove(); 
    }); 
    $('#plus').click(function(){ 
     $('#table').append('<tr><td>new</td></tr>'); 
    }); 
}); 
</script>