0

实际上我有两个错误,我不知道第一个来自哪里。我从“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>

有人可以帮助我吗?我的谷歌技能结束了,很快就放弃了。

4

1 回答 1

0

不确定 innerText 与错误有什么关系,您应该只是收到错误“Uncaught TypeError: undefined is not a function”

你制作插件的方式是错误的。这是一个基本的插件结构。注意使用fn

(function($) {
  $.fn.scrollbar = function(options) {
    var opts = $.extend($.fn.scrollbar.defaults, options);
    
    return this.each(function() {
      $(this).css("background-color", opts.background);
    });
    
  };

  $.fn.scrollbar.defaults = {
    background: "yellow"
  };
})(jQuery);

$(function() {
  $('.mydiv').scrollbar();
  $('.myOtherDiv').scrollbar({ "background":"red"});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="mydiv">XXXXXXXXXX</div>
<div class="myOtherDiv">XXXXXXXXXX</div>

于 2015-02-19T21:36:40.823 回答