<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript">
function unselect(){
if(document.form1.test.options[1].selected){
document.form1.test.options[1].selected=0;
}
}
</script>
</head><body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post">
  <select name="test" size="6" multiple onChange="unselect();">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    <option value="6">6</option>
  </select>
</form>
</body>
</html>
你试一下2,就不能被选择,因为不知道不能选择的条件是什么,就只能这样判断了!
你可以做些改动