码迷,mamicode.com
首页 > 其他好文 > 详细

CodeIgniter(3.1.4)框架中成功/错误跳转

时间:2017-05-22 22:09:48      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:href   history   sts   跳转   script   --   exists   cap   func   

if ( ! function_exists(‘error‘))
{
    /**
     * 错误跳转
     */
    function error($mes, $url)
    {
        echo ‘<script type="text/javascript">alert("‘.html_escape($mes).‘");history.back();</script>‘;
        exit();
    }
}

// ------------------------------------------------------------------------

if ( ! function_exists(‘success‘))
{
    /**
     * 成功跳转
     */
    function success($mes, $url)
    {
        echo ‘<script type="text/javascript">alert("‘.html_escape($mes).‘");window.location.href="‘.$url.‘";</script>‘;
        exit();
    }
}

CodeIgniter(3.1.4)框架中成功/错误跳转

标签:href   history   sts   跳转   script   --   exists   cap   func   

原文地址:http://www.cnblogs.com/hfultrastrong/p/6891547.html

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