87,993
社区成员
发帖
与我相关
我的任务
分享
function (data, textStatus) {
if (textStatus == "success") {
var sizeParent = $("#selLeftParent option").size();
var sizeSub = $("#selLeftSub option").size();
$(data).each(function (idx) {
if (data[idx].GroupID == id) {
if (sizeParent > 0) {
var item = $("#selLeftParent option[value='" + data[idx].ParentGroupID + "']");
$("#selRightParent").append($(item).clone());
$(item).remove();
}
}
else {
if (sizeSub > 0) {
var item = $("#selLeftSub option[value='" + data[idx].GroupID + "']");
$("#selRightSub").append($(item).clone());
$(item).remove();
}
}
});
}
}