作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下方法创建“完美滚动条”:
https://noraesae.github.io/perfect-scrollbar/
使用最简单的代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="/css/perfect-scrollbar.css" />
<script src="/js/perfect-scrollbar.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#msgid").html("This is Hello World by JQuery.");
$('#msgid').perfectScrollbar();
});
</script>
<div id="msgid"></div>
TypeError: $(...).perfectScrollbar is not a function
最佳答案
您可能没有启用 jQuery 的版本。这段代码对我有用:
<title>Test</title>
<!-- META -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SCRIPTS -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/0.6.7/js/min/perfect-scrollbar.jquery.min.js"></script>
<script type="text/javascript">
$(document).on('ready', function() {
console.log('HELLO!');
$('.id-parent').perfectScrollbar();
});
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/0.6.7/css/perfect-scrollbar.min.css" />
<style type="text/css">
.id-parent {
position: relative;
overflow: auto;
height: 200px;
}
.id-child {
height: 1000px;
}
</style>
</head>
<div class="id-parent">
<div class="id-child">
<h1>Content goes here</h1></div>
</div>
关于perfect-scrollbar - TypeError : $(. ..).perfectScrollbar 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34028916/
我正在尝试使用以下方法创建“完美滚动条”: https://noraesae.github.io/perfect-scrollbar/ 使用最简单的代码: $(document).ready(
我正在尝试在 FullCalendar 上应用 PerfectScrollbar,但遗憾的是我得到了: PerfectScrollbar is not a function 这很奇怪,因为在我的应用程
我正在尝试创建一个“完美的滚动条”,它是这样的:。Https://github.com/noraesae/perfect-scrollbar-bower。使用尽可能简单的代码:。我犯了以下错误:。当然
我正在使用highcharts library ,是related plugins并使用 perfect scrollbar用于滚动。该图表使用“缩小”和“放大”插件(在鼠标滚轮事件上)进行了扩展,并
我是一名优秀的程序员,十分优秀!