gpt4 book ai didi

javascript - asp.net 如何在点击文本框时显示一个div。使用 jquery

转载 作者:行者123 更新时间:2023-11-30 05:56:28 25 4
gpt4 key购买 nike

我试过这样

<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>

但还是不行...请帮帮我...

最佳答案

如果您在 Master Page 中使用它,那么您的 Textbox 的 ID 将会改变。所以请使用它。

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

如果你没有使用母版页那么这应该可以工作

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

关于javascript - asp.net 如何在点击文本框时显示一个div。使用 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11558729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com