Jscrollpaneには根本的な問題があるようです。スクロールペイン内に絶対位置divがある場合、垂直スクロールは機能しません。これは私のコードです:
<script type="text/javascript">
$(document).ready(function(){
$('#test').jScrollPane({showArrows: true,
verticalArrowPositions: 'split',
horizontalArrowPositions: 'split',
autoReintialise: true
});
});
</script>
<div id="test" style="width:600px; height:500px">
<div style="width:400px;height:1200px;border:1px solid #000;position:absolute">
test test test</div>
</div>
絶対位置のdivでこれを機能させるにはどうすればよいですか?