0
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
jQuery(document).ready(function($) {
window.scroll(0, document.documentElement.scrollHeight);
});
</script>
</head>
<body>
<div id="hahaha">
<% for (int i = 0 ; i < 100 ; i++) {%>
<div><%=i%></div>
<% } %>
</div>
<% for (int i = 0 ; i < 100 ; i++) {%>
<div><%=i%></div>
<% } %>
</body>
div#hahaha{
background-color: #EEEEEE;
position: absolute;
width:500px;
height:200px;
overflow-y: scroll;
}
這個代碼僅適用其位於瀏覽器右側的主滾動條上,而是在div標籤內不工作,任何人都可以告訴我怎麼做位於div內的內容滾動到底部?