detail.html 646 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <title></title>
  6. </head>
  7. <body>
  8. <script>
  9. var xmlhttp = new XMLHttpRequest();
  10. xmlhttp.open("GET", "http://192.168.1.113:86/seeyon/fullTextSearching", true);
  11. xmlhttp.send();
  12. xmlhttp.onreadystatechange = function () {
  13. if (xmlhttp.readyState == 4 && (xmlhttp.status == 200 || xmlhttp.status == 0)) {
  14. window.location.href = "http://192.168.1.113:86/seeyon" + window.location.search.slice(5)
  15. }
  16. }
  17. </script>
  18. </body>
  19. </html>