定时显示隐藏
Posted 小鬼PSer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时显示隐藏相关的知识,希望对你有一定的参考价值。
1 <script type="text/javascript"> 2 function close2(){ 3 // $(‘#a‘).css(‘display‘,‘none‘); 4 $(‘#a‘).hide(); 5 // alert(‘message‘); 6 } 7 function xianshi2(){ 8 $(‘#a‘).css(‘display‘,‘block‘); 9 } 10 setInterval(‘xianshi2()‘,10000); 11 </script> 12 <div id=‘a‘ style="position:fixed;bottom:30px;left:20px;display:none;"> 13 <div style="text-align:right;"> 14 <a href="javascript:void(0);" onclick="close2()" ><img src="images/001-1.png" /></a> 15 </div> 16 <img src="images/002.png" /> 17 </div>
以上是关于定时显示隐藏的主要内容,如果未能解决你的问题,请参考以下文章