选择一个列表框中的值应影响所有其他列表框
我有三个列表框,名称分别为州、地区和学院。所有列表框都包含“全部”值。如果我在州列表框中选择全部,则其他列表框区和学院应更改为“全部”。怎样制作呢?我已经对两个列表框进行了更改。我无法参加第三次。
ex : 1. State -
a) xxxxxxx
b) yyyyyyy
c) zzzzzzz
d) All
2. District -
a) aaaaaaa
b) bbbbbbb
c) All
3. College -
a) aaaaaaa
b) All
看到那里,如果我在州列表框中单击“全部”,则学区和学院应该全部出现。 在此之前,如果我单击地区列表框中的“全部”,学院应更改为“全部”。如何在onChange中编写代码?
提前致谢。
i have three list boxes name as state,District, and college. All list boxes contains a value as "All". if i select all in state list box the other list boxes district and college should change as "All". How to make it? i have done changes for two list boxes. i couldn't make for the third one.
ex : 1. State -
a) xxxxxxx
b) yyyyyyy
c) zzzzzzz
d) All
2. District -
a) aaaaaaa
b) bbbbbbb
c) All
3. College -
a) aaaaaaa
b) All
see there, if i click "All" in a state list box the District and College Should come as all.
before that i have done if i click "All" in district list box the college sholud change as "All" . How to write code in onChange??
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 jQuery 中,你可以这样做:
参见 http://jsfiddle.net/CDMWK/3/
In jQuery you could do something like this:
See http://jsfiddle.net/CDMWK/3/
根据所选项目使用 switch 语句执行不同的操作是有意义的。
要访问所选项目的值,您可以在 onchange 中使用它:
it makes sense to use a switch statement to do different stuff depending on the item selected.
to access the value of the selected item you can use this inside the onchange: