我有一個問題,在JavaScript重複同一個tr後,當我點擊td元素。 我的HTML代碼波紋管:在點擊表td輸入每次追加相同的tr
<table id="tabl2" class="table time-table table-bordered table-striped budrow">
<thead>
<tr>
<th class="cal-head">Rates</th>
<th class="cal-head">Start date</th>
<th class="cal-head">End date</th>
</tr>
</thead>
<tr>
<td>
<input type="number" readonly placeholder="Rates">
</td>
<td>
<input type="text" readonly id="start" placeholder="Start date">
</td>
<td>
<input type="text" class="datepicker" name="enddate" placeholder="End date">
</td>
</tr>
我試着用這個JS,但失敗:
$('.budrow').click(function(){
$(this).find('tr').append('<tr> <td></td> <td></td> <td></td> </tr>');
});
請幫助我。
請檢查該鏈接 http://stackoverflow.com/questions/171027/add-table-row-in-jquery – jaycyborg