修改Thinkphp3.2中的跳轉提示頁面

Json______發表於2017-10-26

技術QQ交流群:294088839


<?php

    if(C('LAYOUT_ON')) {
        echo '{__NOLAYOUT__}';
    }
?>
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>跳轉提示</title>
    <script src="__ADMIN__/js/jquery-2.1.1.min.js"></script>
    <script src="__PUBLIC__/layer/layer.js"></script>
</head>
<body>


<?php if(isset($message))
   {
?>
    <script>
        layer.msg('<?php echo($message); ?>',{icon:6,time:1500},function(){
            location.href='<?php echo($jumpUrl); ?>';
        })


    </script>




<?php
   }else{
?>
    <script>
        layer.msg('<?php echo($error); ?>',{icon:5,time:1500},function(){
            location.href='<?php echo($jumpUrl); ?>';
        })


    </script>


<?php
  }
?>




</body>
</html>

相關文章