js.html 214 B

12345678
  1. <script>
  2. localStorage.setItem("language", "JS");
  3. var parseURL = window.location.href.split("js.html");
  4. var hash = parseURL[parseURL.length - 1];
  5. window.location = "./" + hash;
  6. </script>