私は jquery append and remove dynamic table row (http://jsfiddle.net/samliew/3AJcj/2/)テーブルの動的行を削除するにはどうすればよいですか?
からのコードを以下のよ、私はすでに私のテーブルを組織しました。 しかし、削除機能が動作しませんでしたが、このコードをどのように変更するのですか? $(this).parent().parent().remove();
コードについてはわかりません。
$(document).ready(function(){
\t $(".addCF").click(function(){
\t \t $("#addTg").after('<tr><td class="tg-yw4l" ><input type="text"></td><td class="tg-yw4l" colspan="2" ><input type="text"></td><td class="tg-yw4l" ><input type="text"></td><td><a href="javascript:void(0);" class="remCF" >Remove</a></td></tr>');
\t });
\t $("#addTg").on('click','.remCF',function(){
\t $(this).parent().parent().remove();
\t });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table class="tg">
<tr>
<td class="tg-mtwr">DATE</td>
<td class="tg-mtwr" colspan="2" >CONTENTS</td>
<td class="tg-mtwr">PRICE</td>
<td class="tg-mtwr">BUTTON</td>
</tr>
<tr id="addTg">
<td class="tg-yw4l" ><input type="text"></td>
<td class="tg-yw4l" colspan="2" ><input type="text"></td>
<td class="tg-yw4l" ><input type="text"></td>
<td class="tg-yw4l"></td>
</tr>
<tr>
<td colspan="5" style="border:0px solid #fff;">
</td>
</tr>
</table>
<button onclick="myFunction()" class="addCF" >Add</button>
はどうもありがとうございました!!!! – user2458645
@ user2458645:喜んで助けてください:) –