$.ajax({
url: 'product_list_append.php', //url주소
dataType: 'html', //타입:html or json
type: 'GET', //호출 타입 :GET,POST..
data:{
code : "<?=$code?>",
s_code : "<?=$_GET['s_code']?>",
page : page
}, //보내고자 하는 데이터. 이건 개발자와 상의해야함
beforesend : function(){
$('.roading').show();
}, //보내기전
success: function(html) {
$('#appendProduct').append(html);
}
});
728x90
반응형
'Web > jquery' 카테고리의 다른 글
[제이쿼리] 콜백 함수 (0) | 2018.05.15 |
---|---|
[AJAX] ajax에서 jquery찾기 (0) | 2018.05.15 |
[제이쿼리] 스크롤 부드럽게 내려가기 (0) | 2018.05.15 |
[제이쿼리] iframe에서 부모 접근 컨트롤 (0) | 2018.05.15 |
[제이쿼리] fading / sliding / this (0) | 2018.05.15 |