gpt4 book ai didi

c# - 使用javascript从html文本框中获取值

转载 作者:太空宇宙 更新时间:2023-11-03 13:28:48 27 4
gpt4 key购买 nike

我已经创建了一个 ASP.NET MVC 应用程序,并且想在将文本框发送回 Controller 之前用文本框中的值做一些“事情”。

所以我有一个表单中的文本框:

using (Html.BeginForm("HandleForm","Home")
{
<p>Enter Value<p>
@Html.TextBox("amount")
<input type="submit" value="Submit" />
}

通常我会在 JS 中使用这样的东西:

var value = document.getElementById(ID).value;

那么我该如何使用 HTML Helpers 来做到这一点呢?可以给这个文本框一个 id 吗?

最佳答案

您无法为此获得 HTML Helper,但这可能对您有所帮助。

var value = document.getElementById('@Html.Id("amount")').value;

使用 @Html.Id() Html Helper,您将获得特定 View 数据的 ID

关于c# - 使用javascript从html文本框中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21378717/

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