countUp.js没有加载

时间:2015-01-13 16:44:04

标签: javascript jquery count

我曾尝试设置countUp.js,但无法加载,我对Javascript或Jquery很新,所以也许我做错了什么?

<div id="count"></div>

//脚本可能有问题吗?

var options = {  
  useEasing: true,
    useGrouping: true,
    separator: ',',
    decimal: '.'  
  prefix: ''  
  suffix: ''
}
var test = new countUp("count", 1350, 10000, 0, 5000, options);
demo.start();

JSfiddle link

1 个答案:

答案 0 :(得分:4)

首先,对象的某些属性缺少其尾随,,因此您会出现语法错误。此外,您需要在start()变量上调用test,而不是demo。试试这个:

var options = {  
    useEasing: true,
    useGrouping: true,
    separator: ',',
    decimal: '.',
    prefix: '',  
    suffix: ''
}
var test = new countUp("count", 1350, 10000, 0, 5000, options);
test.start();

Updated fiddle