<style> html{ display: none; <!--開始的時候讓頁面所有隱藏--> } </style> <script> function Web_Presentation() { document.querySelector('html').style.display='block' } window.onload=Web_Presentation //所有加載完畢後顯示全部內容 </script>