CodeIgniter(3.1.4)框架中成功/错误跳转
Posted Archibald Witwicky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeIgniter(3.1.4)框架中成功/错误跳转相关的知识,希望对你有一定的参考价值。
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)框架中成功/错误跳转的主要内容,如果未能解决你的问题,请参考以下文章
当数据在javascript codeigniter php中使用ajax成功功能时,如何禁用页面重新加载?