当前位置: 代码迷 >> Web前端 >> radio 双击撤销
  详细解决方案

radio 双击撤销

热度:571   发布时间:2012-11-03 10:57:43.0
radio 双击取消
<!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=gb2312" />
<title>单选按钮,双击取消选中</title>
<script language="javascript" type="text/javascript">
window.onload = function() {
// setRadio("myDiv", "form1", "alreadySelected");
var radios = document.getElementsByTagName("input");
for (var i = 0; i < radios.length; i++) {
if (radios[i].type == "radio") {
radios[i].ondblclick = function() {
this.checked = false;
}
}
}
}
</script>
</head>
<body>
A:<input type="radio" name="rad" value="0" />
B:<input type="radio" name="rad" value="1" />
C:<input type="radio" name="rad" value="2" />
D:<input type="radio" name="rad" value="3" />

</body>
</html>
  相关解决方案