묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
textarea를 자바스크립트로 스크롤 제어하려면..
2002.08.31 17:15
textarea의 내용이 많아서 스크롤이 된다고 할 때
자바스크립트나 다른 방법으로 textarea를 아래로 또는 위로 스크롤 시킬 수 있나요??
자바스크립트나 다른 방법으로 textarea를 아래로 또는 위로 스크롤 시킬 수 있나요??
댓글 2
-
steelheart
2002.08.31 17:37
-
☺zylon
2002.08.31 17:42
정말 신기하네요.. 이제야 살 것 같습니다..
stealheart님 매번 감사합니다.. 어떻게 질문하는 것마다 아시는지 궁금할 따름..
<script language="javascript">
<!--
function tScroll(action)
{
/*
scrollbarDown : Default. Down scroll arrow is at the specified location.
scrollbarHThumb : Horizontal scroll thumb or box is at the specified location.
scrollbarLeft : Left scroll arrow is at the specified location.
scrollbarPageDown : Page-down scroll bar shaft is at the specified location.
scrollbarPageLeft : Page-left scroll bar shaft is at the specified location.
scrollbarPageRight : Page-right scroll bar shaft is at the specified location.
scrollbarPageUp : Page-up scroll bar shaft is at the specified location.
scrollbarRight : Right scroll arrow is at the specified location.
scrollbarUp : Up scroll arrow is at the specified location.
scrollbarVThumb : Vertical scroll thumb or box is at the specified location.
down : Composite reference to scrollbarDown.
left : Composite reference to scrollbarLeft.
pageDown : Composite reference to scrollbarPageDown.
pageLeft : Composite reference to scrollbarPageLeft.
pageRight : Composite reference to scrollbarPageRight.
pageUp : Composite reference to scrollbarPageUp.
right : Composite reference to scrollbarRight.
*/
XXX.doScroll(action);
}
-->
</script>
<textarea id="XXX" style="width:200px; height:100px;">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</textarea>
<button onclick="tScroll('up');">scrollUp</button>