在 jQuery 中获取输入元素的值
如何获取 jQuery 中输入元素的值?
How can I get the value of an input element in jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取 jQuery 中输入元素的值?
How can I get the value of an input element in jQuery?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
如果这是您的
文本框
:您将使用文本框的
ID=mytextBox
获取它的值
...参考
If this is your
textbox
:You will be getting it's
value
using the textbox'sID=mytextBox
...References
最好的方法是使用 val() 函数,如下所示:
您还可以使用 attr 函数查找某些字段的值
The best way is to use the
val()
function, as in:You can also use the attr function to find the value for some fields
val
函数获取或设置输入字段的值。将输入值设置为“Hello world”:
获取输入值:
The
val
function gets or sets the value of an input field.Set the input value to "Hello world":
Get the input value:
使用 jQuery('inputElement').val() 获取 input(form) 元素的值
use jQuery('inputElement').val() to get the values of input(form) elements