未捕获的TypeError:无法读取属性'替换'未定义的使用jQuery

时间:2016-05-04 04:42:13

标签: javascript jquery

我在整数上做空格分隔符。这是我的代码

if ( $.fn.appear && $.fn.countTo ) {
    $('.counter').appear(function() {
        $('.timer').each(count);
        function count(options) {
            var $this = $(this);
            options = $.extend({}, options || {}, $this.data('countToOptions').replace(/ /g,'') || {});
            $this.countTo(options);
        }
    });
}

当我执行一个整数时可以显示但显示未捕获的TypeError:无法读取属性'替换'未定义。那么如何修复我的代码?

0 个答案:

没有答案