如果选择了下拉列表,则选择单选按钮

发布于 2025-01-08 02:56:56 字数 120 浏览 0 评论 0原文

我想知道如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀞厅☆埖开 2025-01-15 02:56:56

这确实很简单。这是给您的一个小代码。
将 5 个列表框 ID 为“sel1”、“sel2”、...
ID 5 个单选按钮“rad1”,rad2,..但请确保单选按钮具有相同的名称!

接下来,将此函数作为 javascrip 放入:

function makeSelection(radioid){
document.getElementById(radioid).checked=true;
}

在选择框中,附加 onchanged 侦听器:
IE;

<select ... onchange="makeSelection('rad1');" >.. for the 1st select box,
<select ... onchange="makeSelection('rad2');" >.. for the 2ns select box, etc.

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:

function makeSelection(radioid){
document.getElementById(radioid).checked=true;
}

In the select boxes, attach onchanged listeners:
ie;

<select ... onchange="makeSelection('rad1');" >.. for the 1st select box,
<select ... onchange="makeSelection('rad2');" >.. for the 2ns select box, etc.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文