如果选择了下拉列表,则选择单选按钮
我想知道如何使用 JavaScript 来完成以下任务:
我有一个带有五个下拉列表的输入区域,每个下拉列表都有一个相应的单选按钮。当单击下拉列表进行选择时,我希望与其配对的单选按钮立即被选中。任何帮助将不胜感激。
I'm wondering how I can use JavaScript to accomplish the following:
I have an input area with five dropdownlists, and each one has a corresponding radio button. When a dropdownlist is clicked to make a selection, I would like the radio button paired with it to become checked right then. Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这确实很简单。这是给您的一个小代码。
将 5 个列表框 ID 为“sel1”、“sel2”、...
ID 5 个单选按钮“rad1”,rad2,..但请确保单选按钮具有相同的名称!
接下来,将此函数作为 javascrip 放入:
在选择框中,附加 onchanged 侦听器:
IE;
Its kind of simple really. Here is a small code for you.
ID the 5 listboxes as "sel1", "sel2" ,...
ID the 5 radio buttons "rad1", rad2,.. Make sure the radio buttons have same name though!
Next, put this function in as a javascrip:
In the select boxes, attach onchanged listeners:
ie;