码迷,mamicode.com
首页 > Web开发 > 详细

PHP页面提示与跳转

时间:2016-05-25 23:47:38      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

我们在进行表单操作时,有时为了友好需要提示用户操作结果,并跳转到相关页面,请看以下函数:

function message($msgTitle,$message,$jumpUrl){ 
    $str = ‘<!DOCTYPE HTML>‘; 
    $str .= ‘<html>‘; 
    $str .= ‘<head>‘; 
    $str .= ‘<meta charset="utf-8">‘; 
    $str .= ‘<title>页面提示</title>‘; 
    $str .= ‘<style type="text/css">‘; 
    $str .= ‘*{margin:0; padding:0}a{color:#369; text-decoration:none;}a:hover{text-decoration:underline}body{height:100%; font:12px/18px Tahoma, Arial,  sans-serif; color:#424242; background:#fff}.message{width:450px; height:120px; 
margin:16% auto; border:1px solid #99b1c4; background:#ecf7fb}.message h3{height:28px; 
line-height:28px; background:#2c91c6; text-align:center; color:#fff; font-size:14px}.msg_txt{padding:10px; margin-top:8px}.msg_txt h4{line-height:26px; font-size:14px}.msg_txt h4.red{color:#f30}.msg_txt p{line-height:22px}; 
    $str .= ‘</style>‘; 
    $str .= ‘</head>‘; 
    $str .= ‘<body>‘; 
    $str .= ‘<div>‘; 
    $str .= ‘<h3>‘.$msgTitle.‘</h3>‘; 
    $str .= ‘<div>‘; 
    $str .= ‘<h4>‘.$message.‘</h4>‘; 
    $str .= ‘<p>系统将在 <span style="color:blue;font-weight:bold">3</span> 秒后自动跳转,如果不想等待,直接点击 <a href="{$jumpUrl}">这里</a> 跳转</p>‘; 
    $str .= "<script>setTimeout(‘location.replace(\‘".$jumpUrl."\‘)‘,2000)</script>"; 
    $str .= ‘</div>‘; 
    $str .= ‘</div>‘; 
    $str .= ‘</body>‘; 
    $str .= ‘</html>‘; 
    echo $str; 
}

//使用方法如下 

message(‘操作提示‘,‘操作成功!‘,‘http://www.helloweba.com/‘);

 

PHP页面提示与跳转

标签:

原文地址:http://www.cnblogs.com/yhdsir/p/5529008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!