在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前几天做了一个简单的成功提示页面! 有需要的可以拿去用,写的不好 欢迎指正!~~ 因为工程是在CI下面做的,url 自己用的话需要改正下函数!site_url() 这个函数式CI框架的 <html> <head> <meta charset="utf-8" /> <title>操作成功!</title> <style type="text/css"> .success_msg{ border: 1px solid #adceff; width: auto; height: 100px; background: #00b7ee; padding: 10px; font-size: 20px; border-radius: 4px; line-height: 100px; } </style> </head> <div class="success_msg"> <?php echo $msg?>,<span >秒钟后跳转! </div> <?php if(isset($url)): ?> <meta http-equiv="refresh" content="3; url=<?php echo site_url($url)?>"> <?php else:?> <meta http-equiv="refresh" content="3; url=<?php echo $_SERVER['HTTP_REFERER'];?>"> <?php endif?> <script type="text/javascript"> //倒计时 setInterval("clock()", 1000); function clock() { var span = document.getElementById('second'); var num = span.innerHTML; if(num != 0) { num--; span.innerHTML = num; } }; </script> </html>
|
2022-08-17
2022-11-06
2022-07-29
2022-08-18
2022-07-30
请发表评论