芜湖网站建设芜湖网站优化、模板建站、微信小程序开发的网站定制服务由芜湖芝麻开门网络科技有限公司为您服务。
建站电话

0553-7552712

JS+DIV延时几秒后消失或显示代码

标签:芜湖建站公司 2020/1/1 

<script>

function operate()

{

   document.getElementById('div_test').style.display="";

   setTimeout("disappeare()",2000);

}

function disappeare(){

   document.getElementById('div_test').style.display="none";

}

</script>

</head>

<body>

<input type="button" onclick="javascript:operate()" value="操作"/>

<div id="div_test" style="display:none;color:white;line-height:25px;position:absolute;z-index:100;left:50%;top:2%;margin-left:-75px;text-align:center;width:150px;height:25px;font-size:12px;">

   恭喜你,操作成功!

</div>