제이쿼리-jQuery $.ajax equivalent for Ajax.updater
페이지 정보
작성자 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 3,126회 작성일 18-09-23 00:38본문
$.ajax({
url: 'ajax/get_folders.php',
data: { category: $('#category').val(), office: $('#office').val() },
success: function(result) {
$('#folder').html(result);
}
});
또는
var parameters = {
category: $('#category').val(),
office: $('#office').val()
};
$('#folder').load('ajax/get_folders.php', parameters);
$
(
'#folder').load('ajax/get_folders.php'
, parameters);댓글목록
등록된 댓글이 없습니다.