| 12345678910111213141516171819202122232425262728293031323334 |
- <!doctype html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta http-equiv="Pragma" content="no-cache">
- <meta http-equiv="Cache-Control" content="no-cache">
- <meta http-equiv="Expires" content="0">
- <title>退出登录</title>
- <link rel="stylesheet" href="css/index.css" type="text/css">
- <link rel="stylesheet" type="text/css" href="css/children.css">
- <link href="css/login.css" rel="stylesheet" type="text/css">
- <script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
- <script type="text/javascript" src="js/jquery.SuperSlide.2.1.1.js"></script>
- <script src="js/login.js">
- </script>
- </head>
- <body>
- <h1>退出成功,正在返回首页......</h1>
- <script>
- if(sessionStorage!=undefined)
- {
- sessionStorage.removeItem("username");
- if(window.speechSynthesis !=undefined)
- {
- var msg = new SpeechSynthesisUtterance("正在退出,请稍后");
- window.speechSynthesis.speak(msg);
- }
- }
- setTimeout(function(){
- location.href="index.html";
- },2000)
- </script>
- </body>
- </html>
|