| 1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="renderer" content="webkit">
- <meta http-equiv="Cache-Control" content="no-siteapp" />
- <title>商丘政务服务热线后台业务管理系统</title>
- <script src="./js/jquery.min.js"></script>
- <script src="./js/jquery.cookie.js"></script>
- </head>
- <body>
- <script>
- $(function(){
- if ($.cookie("token") == null) {
- window.location.href = "login.html";
- }else{
- window.location.href = "home.html";
- }
- })
-
- </script>
- </body>
- </html>
|