充值完成 - 3秒后自动跳转至下单页面
<!DOCTYPE html>
<html>
<head>
<title>充值完成 - 3秒后自动跳转</title>
<meta charset='UTF-8'>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
font-size: 24px;
}
</style>
</head>
<body>
<p>充值完成,3秒后跳转至下单页面</p>
<script>
setTimeout(function() {
window.location.href = '/index.php';
}, 3000);
</script>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/nO0u 著作权归作者所有。请勿转载和采集!