티스토리 뷰

$('#layout_div').scrollTop(0);   // 상단으로 이동 (세로 스크롤)
$('#layout_div').scrollLeft(800); // div의 800픽셀 위치로 이동 (가로 스크롤)

$("div#layer_pop").css({"left":left+"px"});
$("div#layer_pop").css({"top":top+"px"});

=========================================================================================

< script>
$(document).ready(function () {
   $(window).scroll(function () {
      var scrollHeight = $(window).scrollTop();
      //alert("scrollHeight : "+ scrollHeight);  // 2583
      var windowHeight =  $(window).height();
      //alert("windowHeight : "+ windowHeight);  // 909
      var documentHeight = $(document).height();
      //alert("documentHeight : "+ documentHeight);  // 3492
      
      //alert("window.height : "+ scrollHeight + " window.scrollTop : " + windowHeight + " / documentHeight : "+documentHeight);
      

      if ((scrollHeight + windowHeight) >= documentHeight) {
         //alert("window.height : "+ scrollHeight + " window.scrollTop : " + windowHeight + " / documentHeight : "+documentHeight);
         ajaxHandler();
      }
   });
});
function ajaxHandler() {
   //alert("전체보기");
   var jsonParm = $("#formListAdd").serialize();
   $.ajax({
      url:"/pages/list/list_add_action.php",
      type:"post",
      data:jsonParm, 
         dataType:'json',
         success:function(serverResponse){
            if(serverResponse.checkYN == "Y") {
               //document.getElementById("frameMainContents").innerHTML = document.getElementById("frameMainContents").innerHTML + serverResponse.message;
            }
            if(serverResponse.checkYN == "N") {
               //alert(serverResponse.message);
            }
         }
   });
}
< /script> 

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31