下拉框(select)的onchange事件函数调用问题?(100分送一人)
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<form name="form1" method="post" action="#">
<select name="select1" onChange="bb()">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</form>
</body>
</html>
<script language="JavaScript">
document.form1.select1.onchange = aa;
function aa(){
alert("a");
return true;
}
function bb(){
alert("b");
return true;
}
</script>
==================================
我知道可以用onchange="aa();bb()"
但是在我程序里只能用上面方式来调用,不知道能不能实现?执行完aa()后执行bb函数?