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

时间:2013-01-30 20:16:19

标签: javascript html

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

3 个答案:

答案 0 :(得分:25)

只需将其checked属性设置为true

document.getElementById(shirtColor).checked = true;

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

答案 1 :(得分:3)

看起来像那样

btn = document.getElementById("itsID");
btn.checked = true;

答案 2 :(得分:2)

你可以用这种方式使用jquery

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

确保在执行此jquery之前加载了元素..为了安全起见,您应该始终在</body>标记

之前将脚本放在页面末尾