티스토리 뷰
$('#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>
'Language > JavaScript' 카테고리의 다른 글
[ JavaScript_JS ] 단축키 지정 - Shortcuts (0) | 2015.11.29 |
---|---|
[ JavaScript ] 창 외부 베너 스크롤시 따라다니는 베너 - scroll banner (0) | 2015.11.29 |
[ JavaScript ] 스크롤 베너 (0) | 2015.11.29 |
[ JavaScript ] 날자 구하기 (0) | 2015.11.29 |
[ JavaScript ] input focus 위치 첫번째로 - cursor (0) | 2015.11.29 |