ajax异步提交返回数据显示在页面固定div层

阅读更多

            function onClick() {
                $.ajax({
                    type: "post",
                    url : "${pageContext.request.contextPath}/s/m/train/list/",
                    data: {},
                    success: function(json){
                        $("#msgdiv").hide();
                        $("#videolistdiv").html(json);
                        $("#videolistdiv").show();
                    },
                    error:function(json){
                        alert("系统错误");
                    }
                });
        }
页面有一

就行

你可能感兴趣的:(ajax异步提交返回数据显示在页面固定div层)