0

好吧,标题与我要搜索的内容相匹配,但要缩小范围;),

我正在寻找一个数字计数器添加到我的网页,我希望数字延伸到无限值,将表格中的数字数据添加到计数器而不将计数器重置为 0。

非常感谢任何可以提供帮助的人:)

<script>
('.myClassAbleToAddOnCounter').bind('click', function(){

var currentCount = parseInt($('#myCounterTotal').html());

var countToAdd = parseInt($(this).html());


('#myCounterTotal').html( currentCount + countToAdd );

});</script>
4

1 回答 1

0

如何在JavaScript中创建计数器的示例..

function Counter(start) {
    this.value = this._initial = start || 0;
}
Counter.prototype.now = function () { return this.value; };
Counter.prototype.inc = function () { return ++this.value; };
Counter.prototype.add = function (x) { return this.value += x; };
Counter.prototype.reset = function () { return this.value = this.initial; };

然后

var c = new Counter();
c.inc();  // 1
c.inc();  // 2
c.add(5); // 7
于 2013-08-02T12:57:05.057 回答