jQuery - 根据输入字段更改隐藏值
我正在使用表单字段来捕获特定情况的统计数据。我需要根据两个文本字段的输入来更改隐藏字段的值。我将用简单的英语描述该功能。如果您能帮助将其翻译为有效的 jQuery 脚本,我们将不胜感激。
隐藏字段等于“yes”,其中 field_1 的值等于 4 && field_2 等于 2 或者 隐藏字段等于“yes”,其中 field_1 的值等于 3 && field_2 等于 1 或者 隐藏字段等于“yes”,其中 field_1 的值等于 2 别的 隐藏字段等于“否”
正如语句的结构所示,我首先是一名 php 开发人员。我的假设是这可以通过 jQuery 来完成。如果没有,请为我提供替代方案。谢谢!
I am using a form field to capture stats of a particular situation. I need the value of a hidden field to change based on the input of two text fields. I will describe the function in plain English. Help translating this to a functioning jQuery script would be greatly appreciated.
Hidden field equals 'yes' where the value of field_1 equals 4 && field_2 equals 2
or
Hidden field equals 'yes' where the value of field_1 equals 3 && field_2 equals 1
or
Hidden field equals 'yes' where the value of field_1 equals 2
else
Hidden field equals 'no'
As indicated by the structure of the statement, I'm a php developer first. It is my assumption that this can be done via jQuery. If not, provide me with an alternative. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望这有帮助。查看 jQuery api 以防您的字段有所不同(例如它们是复选框)
Hope this helps. Check out jQuery api incase your fields are different some how (like if they are checkboxes)
下面使用keyup事件处理程序根据field_1和field_2的输入值(假设它们是文本输入)修改隐藏的输入值。
The following use the keyup event handler to modify the hidden input value based on the input value of field_1 and field_2 (assuming they are text input).