보관함

오유처럼 더블 클릭시에 맨 위로 가고 맨 아래로 가고 싶으면

<script language="javascript">
	function totopbottom() {
		//	if (document.body.scrollTop == 0) { 오유에는 이렇게 되어 있지만...
		if (document.documentElement.scrollTop == 0) {
			window.scrollTo(0,document.body.scrollHeight);
		} else {
			window.scrollTo(0,0);
		}
	}
	function topbottom() {
		document.body.ondblclick = totopbottom;
	}
</script>

 

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">

  

  

  

이 사이트는 Akismet을 사용하여 스팸을 줄입니다. 댓글 데이터가 어떻게 처리되는지 알아보세요.