logout.html 478 B

1234567891011121314151617181920
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. </head>
  10. <script>
  11. function f() {
  12. // localStorage = null;
  13. localStorage.clear();
  14. alert("数据已清空");
  15. }
  16. </script>
  17. <body onload="f()">
  18. </body>
  19. </html>