<head>
<title>New Page 1</title>
<script src="Lunar.js"></script>
</head><body>
<table align=center border=0 cellpadding=0 cellspacing=0 width=100%>
<tr>
<td align=right width="100%" valign=bottom>
    <script language=javascript>
setCalendar();
    </script>
</td>
</tr>
</table>
</body>
这样写的话无法成功调用JS里的函数,总显示Object Expected但如果我把JS文件里的函数都放在HEAD里,即不使用SRC功能却能成功执行函数请问这是为什么呀?如何才能解决这个问题呢?