01.
function
GetManpowerTable(elem)
02.
{
03.
$.ajax({
04.
method:
"POST"
,
05.
url:
'@Url.Action("GetManpowerTable", "Plan")'
,
06.
data: { department_id: elem.value },
07.
dataType:
'html'
,
08.
success:
function
(rs) {
09.
$(
"#result"
).html(rs);
10.
console.log(rs);
11.
}
12.
});
13.
}