gpt4 book ai didi

javascript - 如果选中单选按钮,则允许单击链接

转载 作者:行者123 更新时间:2023-11-28 20:57:47 27 4
gpt4 key购买 nike

我正在寻找一种解决方案,仅当选中单选按钮时才允许用户单击链接。否则应该会出现一条消息(弹出窗口)。

这是我的代码:

<div id="rightnav">
<a href="katan_checklist_walkaroundcheck.html">Next</a></div>
</div>

<li class="radiobutton"><span class="name">Struct. Temp. Indic.> 38°C -not exceed 55°C</span>
<input name="1" type="radio" value="other" /></li>
<li class="radiobutton"><span class="name">Airplane Documents - check </span>
<input name="2" type="radio" value="other" /></li>
<li class="radiobutton"><span class="name">Flight Control Lock - removed</span>
<input name="3" type="radio" value="other" /></li>
...

最佳答案

你可以这样做:

var anchor = document.getElementById('a_next');
anchor.onclick = function(event){
var checked = false;
for(var i = 1; i < 4; ++i){
if (document.getElementsByName(i)[0].checked) {
checked = true;
}
}
return checked;
}

其中“a_next”是 anchor 的 ID。

jsfiddle

关于javascript - 如果选中单选按钮,则允许单击链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11754598/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com