2

我试过这样

<script type="text/javascript">
$(document).ready(function () {
$('#divID').hide();
 $('#txtInsertComments').Onfocus(function () {
 $('#divID').show();    });
});
</script>


//Asp.net Design
  <asp:TextBox ID="txtInsertComments" runat="server" Text="Demo"></asp:TextBox>
   <div runat="server" id="divID">
This is Div
</div>

但仍然无法正常工作...请帮帮我...

4

1 回答 1

1

如果您正在使用它,Master Page那么您的 IDTextbox将会改变。所以使用它。

$('<%txtInsertComments.ClientID%>').focus(function () {
     $('#divID').show();    });
    });

如果您不使用,Master Page那么这应该可以

$('#txtInsertComments.ClientID').focus(function () {
         $('#divID').show();    });
        });
于 2012-07-19T10:26:59.583 回答