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.
 
 
 
 
 

22 lines
628 B

<!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>