<style> html{ display: none; <!--开始的时候让页面所有隐藏--> } </style> <script> function Web_Presentation() { document.querySelector('html').style.display='block' } window.onload=Web_Presentation //所有加载完毕后显示全部内容 </script>