会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
显示层3s后隐藏
<!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" xml:lang="en"> <head> <title>豪情</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <style type="text/css"> #test{width:100px;height:100px;border:1px solid #ccc;background:#eee;display:none;} </style> </head> <body> <div id="test">this is a</div> <input type="button" value="test-btn" id="btn" onclick="show('obj')" /> <script type="text/javascript"> var $ = function(id){ return document.getElementById(id); }; var obj = $('test'), btn = $('btn'); var show = function(id){$(id).style.display = 'block'; } var hide = function(id){$(id).style.display = 'none'; } btn.onclick = function(){ show('test'); } setInterval(function(){hide('test')}, 3000); </script> </body> </html>
运行代码
posted @
2010-11-10 21:48
豪情
阅读(
690
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告