商丘12345 前端

index.html 652B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="Cache-Control" content="no-siteapp" />
  8. <title>商丘政务服务热线后台业务管理系统</title>
  9. <script src="./js/jquery.min.js"></script>
  10. <script src="./js/jquery.cookie.js"></script>
  11. </head>
  12. <body>
  13. <script>
  14. $(function(){
  15. if ($.cookie("token") == null) {
  16. window.location.href = "login.html";
  17. }else{
  18. window.location.href = "home.html";
  19. }
  20. })
  21. </script>
  22. </body>
  23. </html>