在 jQuery 中获取输入元素的值

发布于 2024-09-18 12:16:00 字数 27 浏览 7 评论 0原文

如何获取 jQuery 中输入元素的值?

How can I get the value of an input element in jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

回忆凄美了谁 2024-09-25 12:16:01

如果这是您的文本框

<input type="text" id="mytextBox" value="" />

您将使用文本框的ID=mytextBox获取它的...

var value = $("#mytextBox").val()

参考

If this is your textbox:

<input type="text" id="mytextBox" value="" />

You will be getting it's value using the textbox's ID=mytextBox...

var value = $("#mytextBox").val()

References

沉默的熊 2024-09-25 12:16:01
$("#elementId").val()
$("#elementId").val()
拔了角的鹿 2024-09-25 12:16:01

最好的方法是使用 val() 函数,如下所示:

$('#someInput').val();

您还可以使用 attr 函数查找某些字段的值

$('#someInput').attr('value');

The best way is to use the val() function, as in:

$('#someInput').val();

You can also use the attr function to find the value for some fields

$('#someInput').attr('value');
爱本泡沫多脆弱 2024-09-25 12:16:01

val 函数获取或设置输入字段的值。

将输入值设置为“Hello world”:

$('#myInput').val('Hello world');

获取输入值:

$('#myInput').val();

The val function gets or sets the value of an input field.

Set the input value to "Hello world":

$('#myInput').val('Hello world');

Get the input value:

$('#myInput').val();
格子衫的從容 2024-09-25 12:16:01

使用 jQuery('inputElement').val() 获取 input(form) 元素的值

use jQuery('inputElement').val() to get the values of input(form) elements

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文