在colorbox中提交ajax表单后重定向用户

时间:2012-12-14 23:51:50

标签: jquery colorbox

我正在尝试使用jquery通过ajax在colorbox中提交表单。这是我的问题:  第一:我提交表格后无法将用户重定向到另一个页面。 第二:我想在另一个案例中改变彩盒内容而不关闭它。 注意:我正在使用Codeingiter。 这是我的jquery代码:

 $('#create-list-form').submit(function(){
        $.post(
        $(this).attr('action'),
        $(this).serialize(),
        function(data){
         $.colorbox({html: data});
        });
        return false;
    });

谢谢

0 个答案:

没有答案