<!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>Checkbox 實(shí)現(xiàn)限選N個(gè)后其它禁用效果</title>
<script language="javascript">
function Count_selected(){
n=0;
//開(kāi)始檢測(cè)已選中的CheckBox數(shù)量
for (i=1;i<=10;i++){ //此處數(shù)字10為所有CheckBox數(shù)量
obj=document.getElementById("vote_"+i);
if (obj.checked){
n=n+1
}
}
//如果超過(guò)3個(gè),則未選中的禁用
if (n>=3){
for (i=1;i<=10;i++){
obj2=document.getElementById("vote_"+i);
if (!obj2.checked){
obj2.disabled=true;
}
}
}
//如果不超過(guò)三個(gè),所有CheckBox可用
else{
for (i=1;i<=10;i++){
obj2=document.getElementById("vote_"+i);
obj2.disabled=false;
}
}
}
</script>
</head>
<body>
<label><input name="vote" type="checkbox" id="vote_1" value="a" onclick="Count_selected()" />百度</label><br/>
<label><input name="vote" type="checkbox" id="vote_2" value="b" onclick="Count_selected()" />Google</label><br/>
<label><input name="vote" type="checkbox" id="vote_3" value="c" onclick="Count_selected()" />Yahoo</label><br/>
<label><input name="vote" type="checkbox" id="vote_4" value="d" onclick="Count_selected()" />網(wǎng)易</label><br/>
<label><input name="vote" type="checkbox" id="vote_5" value="e" onclick="Count_selected()" />搜狐</label><br/>
<label><input name="vote" type="checkbox" id="vote_6" value="f" onclick="Count_selected()" />TOM</label><br/>
<label><input name="vote" type="checkbox" id="vote_7" value="g" onclick="Count_selected()" />新浪</label><br/>
<label><input name="vote" type="checkbox" id="vote_8" value="h" onclick="Count_selected()" />CCTV</label><br/>
<label><input name="vote" type="checkbox" id="vote_9" value="i" onclick="Count_selected()" />鳳凰網(wǎng)</label><br/>
<label><input name="vote" type="checkbox" id="vote_10" value="j" onclick="Count_selected()" />淘寶</label><br/>
</body>
</html>
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |