// 특정 위치로 스크롤이 향할 때, get_ajax.php에서 데이터를 가져온다.
$(document).scroll(function() {
var item_row_num = 5;
var maxHeight = $(document).height();
var currentScroll = $(window).scrollTop() + $(window).height();
if (maxHeight <= currentScroll + 10) {
item_row_num = item_row_num+3;
$.ajax({
type: "GET",
url: "./get_ajax.php",
data: {
mode:'detail',
idx:'<?= $idx ?>',
cate:'<?= $cate ?>',
it_hot:'<?= $it_hot ?>',
item_row_num:item_row_num
},
cache: false,
success: function(data){
alert("ok");
$("#detail_view").html(data);
}
});
}
});
'웹 개발 이야기 > js, jquery' 카테고리의 다른 글
[JQUERY] 위도 경도 (0) | 2023.03.08 |
---|---|
[JQUERY] 라디오버튼_선택된것과 안된것들 css 지정 (0) | 2023.03.08 |
[JS] 숫자에 콤마 붙이기 (0) | 2023.03.08 |
[node.js] nodemon 사용법 (0) | 2023.03.08 |
[JQUERY] ajax source (0) | 2023.03.08 |
댓글