61,129
社区成员




<html>
<hand>
<script>
function MessageBox()
{
alert("网页显示完成")
}
</script>
</hand>
<body>
... //这里是网页的内容
...
//当网页从上读到最后时显示JS
<script>
MessageBox();
</script>
</body>
<html>
<hand>
<script scr ="Jscript.js" />
</hand>
<body>
... //这里是网页的内容
...
</body>
function MessageBox()
{
alert("网页显示完成")
}
//难就难在这里如何在他显示完网页后执行这一条代码
window.???=MessageBox;