我如何使用 mCustomScrollbar 而不是默认的浏览器滚动条?

How can i use mCustomScrollbar instead of the default browser scrollbar?

我使用了这个代码:

$("body").mCustomScrollbar({
      theme: "3d-thick-dark",
      scrollButtons: { enable: true }
});

mcustomscrollbar 处理其他元素。但不适用于 body 或 html 元素!

问题已解决。 我只需要在 Css.

中使用以下代码
html, body {
  height: 100%;
}