在 Jquery 中获取表值
我有一个小表单,其中包含值 name (TextBox)、age(textbox) 、 Education(选择带有值“Bachelors”和“Masters”的框)。 所以我有一个带有“ADD”的按钮,它将值添加到数据库并以表格格式显示。
我的表有 10 行,每行都有标识。所以我有两个按钮,例如选择和取消,
当我们说选择表中的值应该进入其各自的框时,名称值应进入姓名框,年龄值应进入其年龄框,依此类推。
我如何使用来实现此目的jQuery
I have a small form which takes the values name (TextBox), age(textbox) , Education(select box with values"Bachelors" and "Masters").
So I have a Button with the "ADD" which adds the values to database and displays it in a table format.
Iam having the table with 10 rows and each row is identified . So I have two Buttons such as select and Cancel
When We say select the Values in the table should go their Respective boxes name value should go to name box and Age Value should go their age box and so on..
How can i acheive this using Jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这样的 HTML:
以下 jQuery 表达式将在单击“选择”按钮时将所选行中的值复制到表单中:
For HTML like this:
The following jQuery expression will copy the values from the selected row into the form on 'Select' button click: