2010-06-22 60 views

回答

2
<html> 
<head> 
<script...> 
    function helloWorld() { 
     alert('Hello world!'); 
    } 
</script> 
</head> 
<body> 
...some content... 
    <script...> 
     helloWorld(); 
    </script> 
</body> 
</html> 
+0

非常感謝!!!!!!! – Lalchand 2010-06-22 11:01:19

3

你可以只放置一個<script>塊在裏面,像這樣:

<script type="text/javascript"> 
    myFunction(); 
    </script> 
</body> 

另外,如果您正在使用某種形式的框架,他們大多有當DOM處理程序準備好,或者你可以使用window.onload,無論哪種最適合你的情況。

相關問題