728x90
반응형
j
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$.ajax({
method: 'post',
url: '/sch/schTotalSearchList-data.do',
data: $("#listForm, #schPopLayerForm").serialize(), // 폼2개 던지기
dataType: 'html',
cache: false
})
.done(function(responseHtml) {
$('.txtResult').html($(responseHtml).find('#txtResultAjax').html()); //검색결과
$('.dashboard').html($(responseHtml).find('#dashboardAjax').html()); //dashboardAjax
$('.agency').html($(responseHtml).find('#agency').html()); //생산기관
highlight();
});
|
cs |
@
728x90
반응형