<SCRIPT LANGUAGE=VBScript>
function aa()
。。。。。。
end function
function bb()
......
aa()
end function
<SCRIPT>
<html>
<body>
<input type="button" name="button1" onclick=bb()>
</body>
<html>
为什么实际上不行呢?
你试试这个
call aa()
我记得好像没有参数应该加call