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