ajax返回页面

来源:互联网 发布:ps6软件下载 编辑:程序博客网 时间:2024/05/22 02:29
  /**     * 初始化批量页面1     */    @RequestMapping("/initBatchOpera")    public ModelAndView initBatchWareOpera(String type){        ModelAndView view = new ModelAndView();            view.setViewName("/ware/batch/batchs");        return view;    }
 function initBatchStdUpdate(){        $.ajax({            type: 'POST',            dataType:'html',            url: '#springUrl('')/ware/batchs/initBatchOpera',            success: function (result) {                $("#initBatch").html("");                $("#initBatch").html(result);            }            });    }



原创粉丝点击