gpt4 book ai didi

javascript - 使用 JavaScript 变量设置选中的单选按钮

转载 作者:太空狗 更新时间:2023-10-29 13:04:13 24 4
gpt4 key购买 nike

有没有办法使用 JavaScript 变量设置选中的单选按钮?我希望我可以通过 ID 获取单选按钮并更新选中的单选按钮。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script>
var shirtColor = "green";

document.getElementById(shirtColor);
</script>
</head>

<body>
<p>Shirt Color:
<input type="radio" name="shirtColor" id="red" value="red" />
Red
<input type="radio" name="shirtColor" id="green" value="green" />
Green
<input type="radio" name="shirtColor" id="blue" value="blue" />
Blue</p>
</body>
</html>

最佳答案

只需将其 checked 属性设置为 true:

document.getElementById(shirtColor).checked = true;

这是 fiddle :http://jsfiddle.net/akkSY/

关于javascript - 使用 JavaScript 变量设置选中的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14612850/

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