오유를 가보면 더블 클릭으로 맨 위 혹은 맨 아래로 움직일수 있다. 하지만 IE 7 부터인지 영 맨 아래로는 가는데 맨 위로는 가질 않는다. 알구 봤더니. document.body.scrollTop 을 document.documentElement.scrollTop으로 바꿔 주니까 해결이 된다.
적용전
적용후
적용전
<script language=javascript>
function totopbottom() {
if (document.body.scrollTop == 0) {
window.scrollTo(0,document.body.scrollHeight);
} else {
window.scrollTo(0,0);
}
}
function topbottom() {
document.body.ondblclick = totopbottom;
}</script>적용후
<script language=javascript>
function totopbottom() {
if (document.documentElement.scrollTop == 0) {
window.scrollTo(0,document.body.scrollHeight);
} else {
window.scrollTo(0,0);
}
}
function topbottom() {
document.body.ondblclick = totopbottom;
}</script>별도로 맨아래에 넣어야 하는 코드 <script>topbottom()</script>




댓글을 달아 주세요