複製代碼代碼如下:
<!Doctype HTML公共“ - // W3C // DTD XHTML 1.0 Transitional // en”“” http://www.org/tr/tr/xhtml1/dtd/xhtml1-xhtml1-transitional.transitional.dtdd'>
<html xmlns =“ http://www.w3.org/1999/xhtml”>
<頭>
<title>定時關閉的層</title>
<meta http-equiv =“ content-type” content =“ text/html; charset = gb2312”>
<樣式>
#divbox {
邊界:5px實心#0066cc;
背景:Skyblue;
填充:20px;
字體大小:22px;
顏色:白色;
}
</style>
<腳本語言=“ javascript”>
功能codefans(){
var box = document.getElementById(“ divbox”);
box.style.display =“ none”;
}
settimeout(“ codefans()”,3000); // 3秒
</script>
</head>
<身體>
<div id="divbox">wwwwwwwwwwwwwwwwwwww!</div>
</body>
</html>