如何将1添加到" 1"并提出" 2"在Javascript?

时间:2014-10-12 08:14:07

标签: javascript typescript

我在这里有一些代码:

this.$state.transitionTo('questions.question', { testId: this.$qs.userTestId, cq: this.$qs.cq + 1 });
this.$state.transitionTo('questions.question', { testId: this.$qs.userTestId, cq: this.$qs.cq - 1 });

这个。$ qs.cq的值是1.

当我的代码针对第一种情况运行而不是将其更改为2时,它会进入" 11"。如何才能进行数字加法(对于秒数情况,减法)?

我确实在typescript中定义了:

cq: number;

但它似乎没有给出错误

1 个答案:

答案 0 :(得分:2)

使用:

pareseInt(this.$qs.cq,10) + parseInt(this.$qs.cq,10)