|
|
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> </body> </html> <script type="text/javascript"> var getUrlParam = function (name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"), r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return null; //返回參數值 }, sRefNumber = getUrlParam('RefNumber'), direct = function () { window.location.href = window.location.origin + "/TE/page/ProgressOnlineQuery.html?RefNumber=" + sRefNumber; };
direct(); </script>
|