0

我正在尝试在整个页面中实现 jScrollPane 以更改页面的滚动条,但它不起作用。

我的代码是css:

html,body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#main-wrap {
    height: 100%;
}

jQuery:

  jQuery(document).ready(function ($) {
     "use strict";
  $('#main-wrap').jScrollPane();
  });

和html:

  <div id="main-wrap">
     all other contents...
  </div>

以及 jScrallPane 中给出的所有内容。

问题是:出现滚动条,但页面不直接用捏滚动或鼠标滚动滚动。

请提前帮助和感谢。

4

1 回答 1

0

您是否尝试在 css 中为#main-wrap 指定宽度

#main-wrap{
width:400px;
overflow:auto;
}
于 2013-04-30T08:09:47.293 回答