1 <script> 2 //原生js,入口函數。頁面上全部內容加載完畢,會執行。 3 //不只文本加載完畢,並且圖片也要加載完畢,在執行函數。 4 window.onload = function () { 5 alert(1); 6 } 7 //jquery的入口函數。 1.文檔加載完畢,圖片不加載的時候就能夠執行這個函數。 8 $(document).ready(function () { 9 alert(1); 10 }) 11 //jquery的入口函數。 2.文檔加載完畢,圖片不加載的時候就能夠執行這個函數。 12 $(function () { 13 alert(1); 14 }); 15 //jquery的入口函數。 3.文檔加載完畢,圖片加載完畢的時候在執行這個函數。 16 $(window).ready(function () { 17 alert(1); 18 }) 19 </script>