1. 程式人生 > >使用ajax時,需要返回一個頁面的寫法

使用ajax時,需要返回一個頁面的寫法

$.ajax({
url: "/index!test.do", // 提交地址,該方法能夠跳轉到一個頁面
        global: false,
        type: "POST",
        dataType: "html",
        async: true,
        success: function(msg) {
            $("#id").html(msg);
        },
        error: function(msg) {
        }
});