ラジオボタンキャンセル
1245 ワード
<html>
<head>
<title> (radio) </title>
</head>
<body>
<form>
<input type="radio" name='radio' value="1" onclick='check(this)'>
<input type="radio" name='radio' value="2" 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>