用户在文本框中单击时隐藏表行

时间:2014-03-20 10:52:24

标签: jquery html asp.net css vb.net

当用户点击文本框时,如何隐藏表格行?

我试过这个

$(document).ready(function () {
    $('#tcodeVar').focusin(function () {
        $('tr.trEventhide').hide();
    })
});

HTML:

<tr>
    <td>Code:</td>
    <td>
        <asp:TextBox ID="tcodeVar" runat="server"></asp:TextBox>
    </td>
</tr>
<tr id="trEventhide" runat="server">
    <td>Event?:</td>
    <td>
        <asp:DropDownList ID="DDLEvent2" runat="server"></asp:DropDownList>
    </td>
</tr>

1 个答案:

答案 0 :(得分:1)

更改

$("tr.trEventhide").hide();

$("#trEventhide").hide();

您需要# id-selector


Learn jQuery

API Documentation

Selectors