function addUserRole() {
var instance = $('#resourcesTree').jstree(true);
var select = instance.get_checked (true);
var ids = [];
for (var i = 0; i < select.length; i++) {
ids.push('{"id":"' + select[i].id + '"}');
}
debugger;
$.ajax({
type : "post", //提交方式
url : "${ctx}/role/addRoleResources/" + ${roleId},//路径
//dataType : "json",
contentType : "application/json",
data : '[' + ids + ']',
success : function(result) {//返回数据根据结果进行相应的处理
parent.parent.layer.alert('保存成功!', {
icon : 6
});
}
});
}