gpt4 book ai didi

c# - 设置 asp :textbox val() in jQuery and get the Text of the same on the server side code

转载 作者:行者123 更新时间:2023-11-30 21:48:21 24 4
gpt4 key购买 nike

我已经使用 jQuery val() 函数成功设置了 asp:textbox 的文本,现在我想要在服务器端代码上单击 asp:button 时文本框的相同值。

$("#textboxId").val('some text');
protected void button_Click(object sender, EventArgs e)
{
// getTheText is blank
string getTheText = textboxId.Text.Trim();
}

最佳答案

 <script type="text/javascript">
$(document).ready(function () {

$('#<%= TextBox1.ClientID %>').val("my value");

});
</script>

在按钮点击后的代码中使用

 protected void Button1_Click(object sender, EventArgs e)
{
var value = TextBox1.Text;
}

这会起作用。它对我有用,我测试了它。

关于c# - 设置 asp :textbox val() in jQuery and get the Text of the same on the server side code,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37722974/

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