当前位置: 编程技术>php
php弹出对话框实现重定向代码
来源: 互联网 发布时间:2014-08-26
本文导语: 1 利用js 实现 代码如下: if(!$this->userInfo){ $alert_msg = "激活链接错误"; echo"alert('$alert_msg');window.location='$redirect_url';"; //redirect(base_url()); die; } 2 php 实现 代码如下: if(!$this->userInfo){ $alert_msg = "激活链接错误"; echo"alert('$alert_msg');";//...
1 利用js 实现
if(!$this->userInfo){
$alert_msg = "激活链接错误";
echo"alert('$alert_msg');window.location='$redirect_url';";
//redirect(base_url());
die;
}
2 php 实现
if(!$this->userInfo){
$alert_msg = "激活链接错误";
echo"alert('$alert_msg');";//这种方式没有弹窗效果 why? 加上exit 会有弹窗,后续也会重定向;
redirect(base_url());
die;
}
代码如下:
if(!$this->userInfo){
$alert_msg = "激活链接错误";
echo"alert('$alert_msg');window.location='$redirect_url';";
//redirect(base_url());
die;
}
2 php 实现
代码如下:
if(!$this->userInfo){
$alert_msg = "激活链接错误";
echo"alert('$alert_msg');";//这种方式没有弹窗效果 why? 加上exit 会有弹窗,后续也会重定向;
redirect(base_url());
die;
}