$('#save').click(function(){
if($("#roleForm").form("validate")){
var treeObj = $.fn.zTree.getZTreeObj("functionTree");
var nodes = treeObj.getCheckedNodes(true);//在提交表单之前将选中的checkbox收集
var array = new Array();
for(var i=0;i<nodes.length;i++){
array.push(nodes[i].id);
}
var functionIds = array.join(",");
$("input[name=functionIds]").val(functionIds);
$("#roleForm").submit();
}
});