答案 0 :(得分:1)
他们可能没有正式的api页面,但他们确实有可以提供帮助的示例。例如,以下页面包含此问题的解决方案:http://jscrollpane.kelvinluck.com/arrows.html
页面javascript
$(function()
{
$('.scroll-pane').jScrollPane({showArrows: true});
});
Page CSS
/* Styles specific to this particular page */
.scroll-pane
{
width: 100%;
height: 200px;
overflow: auto;
}
.horizontal-only
{
height: auto;
max-height: 200px;
}
这似乎解释了如何在这里实现目标。