struts2框架学习三 ajax
2021-03-27 10:25
标签:jsp type int 分代 sea url ESS exce json ajax jsp部分代码 action struts2框架学习三 ajax 标签:jsp type int 分代 sea url ESS exce json 原文地址:https://www.cnblogs.com/zlj843767688/p/12631576.html$(function() {
$.ajax({
type:‘POST‘,
url:‘list1Action.action‘,
success:function(data){
if(data.length>0){
var tr=‘‘;
$.each(data,function(index){
tr+=‘
‘
})
$(‘#tb‘).append(tr)
}
},
error:function(){
alert("错误")
}
});
});
‘+data[index].id+‘
‘+data[index].name+‘
‘+data[index].zuoze+‘
‘+
‘
‘+data[index].jianjie+‘
修改 删除
public String list1() {//json转换
ActionContext ac = ActionContext.getContext();
HttpServletResponse response = (HttpServletResponse) ac.get(ServletActionContext.HTTP_RESPONSE);
HttpServletRequest request = (HttpServletRequest)ActionContext.getContext().get(org.apache.struts2.StrutsStatics.HTTP_REQUEST);
List
上一篇:使用css将网页变成黑白色
下一篇:jquery 之瀑布流