在jsp1页面中设置了一个条件查询按钮,通过点击按钮来触发AJAX传值给action,把查询结果存在list中,

2024-12-27 08:07:04
推荐回答(1个)
回答1:

return success后 应该在ajax中跳转页面
function editRole(id){
var obj = new Object();
obj.id = id;
$.ajax( {
type : 'POST',
url : getRootPath() + "/user/checkUsedRole",
data : $.toJSON(obj),
dataType : 'json',
contentType : 'application/json',
success : function(result) {
var items = result.list;
var info = "" ;
for (var i = 0; i < items.length; i++) {
info = info + items[i].message;
$.dialog.confirm('该角色已被使用,确定编辑?', function(){
window.location.href=getRootPath() + "/user/initEditRole/"+id;
})
}
},
error:function(jqXHR, textStatus, errorThrown){
alert("error");
}
});
}