加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 教程 > 正文

JS操控一个DIV层在指定时间内消失的方法

发布时间:2023-10-12 15:04:54 所属栏目:教程 来源:
导读:代码如下:

<!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">

<head>

<
代码如下:
 
<!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">
 
<head>
 
<title>定时关闭的层</title>
 
<meta http-equiv="content-type" content="text/html;charset=gb2312">
 
<style>
 
#divbox{
 
border:5px solid #0066cc;
 
background:skyblue;
 
padding:20px;
 
font-size:22px;
 
color:white;
 
}
 
</style>
 
<script language="javascript">
 
function codefans(){
 
var box=document.getElementById("divbox");
 
box.style.display="none";
 
}
 
setTimeout("codefans()",3000);//3秒
 
</script>
 
</head>
 
<body>
 
<div id="divbox">wwwwwwwwwwwwwwwwwwww!</div>
 
</body>
 
</html>
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章