jQuery 스크롤 $(document).ready(function(){var info = $('#info');$(window).on('scroll', function(){var scroll_horizon = $(window).scrollLeft(); // 스크롤 수평 좌표 받아오기var scroll_vertical = $(window).scrollTop(); // 스크롤 세로좌표 받아오기info.children('.scrollLeft').text(scroll_horizon); // 폼에 좌표 써주기info.children('.scrollTop').text(scroll_vertical); // 폼에 좌표 써주기});var form = $('#form');var xField = form.children('.xField');v.. 더보기 jQuery input div id="form"> input type="text" class="xField" value="" /> input type="text" class="yField" value="" /> input type="button" class="btn" value="입력" /> div> 더보기 개발자도구 보기 #box { position:absolute; width:100px; height:100px; left:50px; top:50px; background:red; color:white;} 더보기 이전 1 ··· 43 44 45 46 47 48 49 ··· 125 다음