实际上我有两个错误,我不知道第一个来自哪里。我从“code.jquery.com”中包含了 jQuery v.2.1.3,Chrome 向我显示了这个错误
未捕获的类型错误:无法读取未定义的属性“innerText”
我猜第二个错误来自我自己。
<head>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
</head>
<body>
<div class="mydiv" style="height:500px; width:500px; margin:50px auto; background-color:#ddd;">
</div>
<script type="text/javascript">
(function($) {
$.scrollbar = function(options){
var opts = $.extend($.scrollbar.defaults, options);
};
$.scrollbar.defaults = {
background: "yellow"
};
})(jQuery);
$(function(){
$('.mydiv').scrollbar();
//Error: Uncaught TypeError: undefined is not a function
});
</script>
</body>
有人可以帮助我吗?我的谷歌技能结束了,很快就放弃了。