alert("请上传文件")
}
控制该单选按钮的checked属性就可以了,赋值为true选中,赋值为false为取消选中,或是选中同组的其它按钮则当前按钮自动取消选中.示例代码如下:
<input type="radio" name="r" id="r1">1<input type="button" onclick="javascript:document.getElementById('r1').checked=true" value="选中1">
<input type="button" onclick="javascript:document.getElementById('r1').checked=false" value="取消1">
Hi,一组checkbox有多个对象,需要遍历后选中。假设我们通过form表单来获取所有的checkbox,当然您也可以设置id来获取。代码如下:
<!DOCTYPE html><html>
<head>
<meta charset="UTF-8">
<title>js自动选中checkbox</title>
</head>
<form>
<input type="checkbox" name="testBox" value="1">选择1
<input type="checkbox" name="testBox" value="2">选择2
</form>
<body>
<script language="javascript">
for(var i=0 i<document.forms[0].testBox.length i++){
document.forms[0].testBox[i].checked = true
}
</script>
</body>
</html>