0

这里我有一张桌子:

            <table border="1" border-style="dashed" width="80%" id='tblAddBirthdays'>
            <tr>
            <th>First Name</th>
            <th>Last Name</th>
            </tr>
            <tr id="tr">
            <td><asp:TextBox ID="txFirstName" runat="server"></asp:TextBox></td>
            <td><asp:TextBox ID ="txLastName" runat="server" /></td>
            <td><asp:DropDownList ID="dlMonth" runat="server" /></td>
            <td><asp:DropDownList ID="dlDate" runat="server" /></td>
            <td><asp:DropDownList ID="dlYear" runat="server" /></td>
            <td><asp:DropDownList ID="dlAgeRange" runat="server" /></td>
            <td><asp:DropDownList ID="dlRelationship" runat="server" /></td>
            <td><asp:DropDownList ID="dlGender" runat="server" /></td>
        </tr>
    </table>

和链接按钮:

 <asp:LinkButton ID="lnkLess" runat="server" Text="(<<)Less "  OnClientClick="JavaScript: return false;" />
        <asp:LinkButton ID="lnkMore" runat="server" Text="More(>>)"  OnClientClick="jQuery:add()" />&

我想编写 jQuery 代码来向表中添加和删除行,我现在尝试了两天,但它仍然无法正常工作。有人可以帮忙吗?

4

2 回答 2

0

我认为你应该使用 DataTable。(Jquery 数据表) Jquery 数据表

于 2013-10-13T07:31:50.353 回答
0

最好的办法是使用像 Baran 说的一些客户端插件,比如 datatable 或 jqgrid

但如果你坚持认为本机 javascript 有一些接口可以删除一行http://www.w3schools.com/jsref/met_table_deleterow.asp 添加一行http://www.w3schools.com/jsref/met_table_insertrow .asp

从这里开始,您的真正任务是将正确的数据放在正确的位置。这些链接中有完整的示例

于 2013-10-13T07:50:33.053 回答