只能大概意思一下,里面有些具体的东西不清楚...
<script type="text/javascript">
function Checked(obj)
{
var o0 = document.getElementsByName("c0");
var o1 = document.getElementsByName("c1");
if (obj.value == "0")
{
if (obj.checked)
{
for (var i = 0; i < o1.length; i++)
{
o1[i].disabled = true;
}
}
else
{
for (var i = 0; i < o1.length; i++)
{
o1[i].disabled = false;
}
}
}
else
{
if (obj.checked)
o0[0].disabled = true;
else
{
for (var i = 0; i < o1.length; i++)
{
if (o1[i].checked)
return;
}
o0[0].disabled = false;
}
}
}
</script>
<input type="checkbox" name="c0" value="0" onclick="javascript:Checked(this);">全国<br>
<input type="checkbox" name="c1" value="1" onclick="javascript:Checked(this);">北京
<input type="checkbox" name="c1" value="2" onclick="javascript:Checked(this);">上海
<input type="checkbox" name="c1" value="3" onclick="javascript:Checked(this);">天津
<input type="checkbox" name="c1" value="4" onclick="javascript:Checked(this);">重庆<br>
<input type="checkbox" name="c1" value="5" onclick="javascript:Checked(this);">广东
<input type="checkbox" name="c1" value="6" onclick="javascript:Checked(this);">湖南
<input type="checkbox" name="c1" value="7" onclick="javascript:Checked(this);">四川
<input type="checkbox" name="c1" value="8" onclick="javascript:Checked(this);">福建
<input type="checkbox" name="c1" value="9" onclick="javascript:Checked(this);">安徽
<input type="checkbox" name="c1" value="10" onclick="javascript:Checked(this);">贵州
<input type="checkbox" name="c1" value="11" onclick="javascript:Checked(this);">青海