form提交跳转问题

    $.ajax({
        type: "POST",
        url: url,
        data: $('.form-horizontal').serialize(), 提交form表单
        success: function (data) {
            $(".knowledge-list").html(data);
//close ....
        }
    });
原文地址:https://www.cnblogs.com/linsx/p/7382831.html