gpt4 book ai didi

jquery - 如何在asp.net代码隐藏中获取HiddenField值

转载 作者:行者123 更新时间:2023-12-01 00:48:35 25 4
gpt4 key购买 nike

如何在asp.net代码隐藏中获取HiddenField值?提前感谢!

  public partial class ReadCard : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);

}

protected void Button1_Click(object sender, EventArgs e)
{
this.ClientScript.RegisterStartupScript(this.GetType(), "MyClick ", "<script>ReadCard();</script> ");
string b= HiddenField1.Value; //How to get the value "123"??
}
}

aspx:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<meta http-equiv="expires" content="0"/>
<meta http-equiv="cache-control" content="no-cache"/>
<meta http-equiv="pragma" content="no-cache"/>
<script src="jquery-1.5.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
function ReadCard() {
$("#HiddenField1").val("123");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:HiddenField ID="HiddenField1" runat="server" />
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
</form>
</body>
</html>

最佳答案

客户端 ID 不一定与服务器 ID 相同(除非您使用 CliendIDMode=Static。您可以插入服务器标记来获取客户端 ID。

另请注意,您必须将脚本放在 document.ready 标记内,或者将脚本放在页面底部 - 否则脚本将找不到 HiddenField1,因为它会尚未加载到 DOM 中。

$(document).ready(function() {
$("<%= HiddenField1.ClientID %>").val("123");
});

关于jquery - 如何在asp.net代码隐藏中获取HiddenField值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13600109/

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