jQuery - 不同的选择
我有两个 HTML 选择框。第一个称为#1,第二个称为#2。
每当我在#1中选择一个选项时,#2选择框应该只显示链接到我在#1选择框中选择的选项的有效选项,依此类推。
这怎么可能?
I have two HTML select boxes. The first is called #1 and the second is called #2.
Whenever I take an option in #1, #2 select box should only show valid options that are linked to the option I took at #1 select box, and so on.
How is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的称为级联列表或“依赖选择列表”。 看看这篇文章演示了一种实现它的方法。
What you are looking for is called cascading list or "dependent select list". Take a look at this article which demonstrates a way to implement it.