|
发表于 2018-6-22 11:57:38
|
显示全部楼层
本帖最后由 52lin 于 2018-6-22 11:58 编辑
你的ajax请求地址operlist/operlist/index,是上面的那个index方法吗?
如果是,ajax返回肯定是html代码,不会跳转的。
如果你是要异步显示html内容:
PHP复制代码 public function index (){
$html = $this->load->view('operlist/operlist_view', '', true);
$url = 'http://......';
die(json_encode(array('url'=>$url, 'html'=>$html)));
} 复制代码
JS复制代码 function login_success(){
$.ajax({
url:'operlist/operlist/index',
type: 'POST',
dataType:'json',
success:function(ret){
// 显示html内容
//$('#xxxx').html(ret.html);
// 跳转地址
location.href = ret.url;
}
});
} 复制代码
|
|