使用jQuery函数失败的Angular Data Binding

时间:2018-03-17 10:26:04

标签: javascript jquery angularjs javascript-events

我是一名设计师,对脚本编写知之甚少。 我有一个显示数字计数器的jQuery函数。我想用角度模型来使用它。我尝试以这种方式应用类,但它显示 NAN 错误。

**I Tried:**

<td><span class="count">{{model.Conversion.Total}}</span></td>

**Output:** 
 NAN Error

**Angular Code:** 

 <td class="widthCustomtd">Total Invoices</td>
 <td>{{model.Conversion.Total}}</td>

**Jquery Code:**

<!-- 1 to 100 Counter Class -->
<span class="count">100</span>

<!-- Function -->
$('.count').each(function () {
    $(this).prop('Counter',0).animate({
        Counter: $(this).text()
    }, {
        duration: 4000,
        easing: 'swing',
        step: function (now) {
            $(this).text(Math.ceil(now));
        }
    });
});

0 个答案:

没有答案