我在整数上做空格分隔符。这是我的代码
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:无法读取属性'替换'未定义。那么如何修复我的代码?