1. 程式人生 > 其它 >自動關閉的廣告

自動關閉的廣告

<style> div{ width:300px; height:300px; background-color:aqua; } </style> <script> window.addEventListener('load',function(){ vardiv=document.querySelector('div') setTimeout(function(){ div.style.display='none' },5000) }) </script>
<div></div>