我正在按鈕單擊動態創建文本框。我想知道用另一個按鈕點擊刪除文本框。使用jquery刪除動態創建的文本框
HTML
<table class="table-fill tbfill">
<thead>
<tr>
<th class="text-left" runat="server">Screen Name</th>
<th class="text-left" runat="server">Seats Available</th>
<th class="text-left"></th>
</tr>
</thead>
</table>
<input id="btnAdd" type="button" value="ADD"/>
jQuery的
$("#btnAdd").bind("click", function()
{
$("tbody.addScreen").append('<tr id="row0">' +
'<td class="text-left" name="screenName"> <input id="screenNameTextBox"/> </td>' +
'<td class="text-left"> <input id="seatsAvlTextBox" name="seatsAvl" /> </td>' +
'<td class="text-left"> <input type="button" value="Remove" id=Removebtn/> </td>' +
'</tr>');
});
我在這裏有一個刪除按鈕。當我點擊按鈕時,我需要從相應的行中刪除文本框。我怎樣才能做到這一點?
你將不得不使用相同的IDS'row0','Removebtn'這是不正確的許多項目。改用類。 –
@YeldarKurmangaliyev:你能告訴我一個例子嗎? –