复制代码代码如下:
<! Doctype html public "-// w3c // dtd xhtml 1.0 transitional // en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
<голова>
<title> 定时关闭的层 </title>
<meta http-equiv = "content-type" content = "text/html; charset = gb2312">
<style>
#divbox {
Граница: 5px sold #0066cc;
Фон: SkyBlue;
Заполнение: 20px;
размер шрифта: 22px;
Цвет: белый;
}
</style>
<script language = "javascript">
функция codefans () {
var box = document.getElementbyId ("divbox");
box.style.display = "нет";
}
setTimeout ("codefans ()", 3000); // 3 秒
</script>
</head>
<тело>
<div id = "divbox"> wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww! </div>
</body>
</html>