| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | {__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>    <title>跳转提示</title>    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta name="renderer" content="webkit">    <link rel="Shortcut Icon" href="/img/logo.png" type="image/x-icon" />    <link href="/static/hplus/css/bootstrap.min.css?v=3.3.6" rel="stylesheet">    <link href="/static/hplus/css/animate.css" rel="stylesheet">    <link href="/static/hplus/css/style.css?v=4.1.0" rel="stylesheet"></head><body>    <div class="ibox">        <div class="ibox-content">            <?php switch ($code) {?>            <?php case 1:?>            <div class="alert alert-success">            <strong style="font-size:18px;"><?php echo(strip_tags($msg));?></strong>            <p class="jump" style="margin-top:10px;">            页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>            </p>            </div>            <?php break;?>            <?php case 0:?>            <div class="alert alert-danger">            <strong style="font-size:18px;"><?php echo(strip_tags($msg));?></strong>            <p class="jump" style="margin-top:10px;">            页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>            </p>            </div>            <?php break;?>            <?php } ?>        </div>    </div>    <script type="text/javascript">        (function(){            var wait = document.getElementById('wait'),                href = document.getElementById('href').href;            var interval = setInterval(function(){                var time = --wait.innerHTML;                if(time <= 0) {                    location.href = href;                    clearInterval(interval);                };            }, 1000);        })();    </script></body></html>
 |