You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
628 B

2 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title></title>
  6. </head>
  7. <body>
  8. </body>
  9. </html>
  10. <script type="text/javascript">
  11. var getUrlParam = function (name) {
  12. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"),
  13. r = window.location.search.substr(1).match(reg);
  14. if (r != null) return unescape(r[2]); return null; //返回參數值
  15. },
  16. sRefNumber = getUrlParam('RefNumber'),
  17. direct = function () {
  18. window.location.href = window.location.origin + "/TE/page/ProgressOnlineQuery.html?RefNumber=" + sRefNumber;
  19. };
  20. direct();
  21. </script>