日期:2014-05-16 浏览次数:20324 次
<html> <head> </head> <body> <div id="login" > aaa <div> <div id="select_name" style="display:none"> bbb <div> <script> var sleep_int = self.setInterval("login_sleep()",10000); function login_sleep () { document.getElementById("login").style.display = "none"; document.getElementById("select_staff_name").style.display = "block"; window.clearInterval(sleep_int); } </script> </body> </html>