support.html 468 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. <script type="text/javascript">
  6. function show() {
  7. var results = /\?topic=(.+)$/.exec(window.document.location);
  8. var topic = decodeURIComponent(results[1].replace(/\+/g, " "))
  9. var node = document.getElementById("topic");
  10. node.textContent = topic;
  11. }
  12. </script>
  13. </head>
  14. <body onload="show()">
  15. <div id="topic"></div>
  16. </body>
  17. </html>