10

有没有办法使用 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>
4

3 回答 3

25

只需将其checked属性设置为true

document.getElementById(shirtColor).checked = true;

这是小提琴:http: //jsfiddle.net/akkSY/

于 2013-01-30T20:17:11.887 回答
3

它看起来像那样

btn = document.getElementById("itsID");
btn.checked = true;
于 2013-01-30T20:18:35.523 回答
2

你可以用这种方式使用jquery

$("control_id").attr("checked",true);

确保在执行此 jquery 之前加载元素.. 为了安全起见,您应该始终将脚本放在页面末尾的</body>标记之前

于 2014-05-15T05:13:48.737 回答