<!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>
时间: 2024-10-17 11:18:10