gpt4 book ai didi

javascript - 保存状态单选按钮javascript-html

转载 作者:行者123 更新时间:2023-11-30 10:28:04 24 4
gpt4 key购买 nike

我正在尝试编写一个程序来保存单选按钮的状态并进行检查。这是我的代码,但我不知道它出了什么问题。请帮助我

<script>
function saveState(){
var ans1 = document.getElementById('grupo1');
if (ans1.value == 1)
{
ans1.setAttribute("checked","checked");
ans1.checked = true;
}
</script>

<input type="radio" name="group" id="grupo1" value="1"> One
<input type="radio" name="group" id="grupo2" value="0"> Two
<input type="submit" onclick="saveState()" value="update">

最佳答案

试试这个:

<script>
function saveState(){
var ans1 = document.querySelector('input[name="group"]:checked').value;

if (ans1.value == 1){
ans1.setAttribute("checked","checked");
ans1.checked = true;
}
}
</script>

关于javascript - 保存状态单选按钮javascript-html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18596844/

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