学习点1:可选择的复选框

<!doctype html>

<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>

<body>

<form>
<input type="radio" name='radio' value="1" onclick='check(this)'>单选一
</form>

<script language="javascript">
var tempradio= null;
function check(checkedRadio)
{
if(tempradio== checkedRadio){
tempradio.checked=false;
tempradio=null;
}
else{
tempradio= checkedRadio;
}
}
</script>


</body>
</html>

posted @ 2015-11-17 09:44  雪昀  阅读(180)  评论(0编辑  收藏  举报