我有一个函数,它有两个参数,它们是Ember对象的属性,如下所示:
mathOp: function(){
if (this.get('operator') == '+'){
var result = this.get('opr1') + this.get('opr2');
alert(result);
}
}
我输入opr1 = 12,opr = 23(例如)。添加它们作为字符串添加,即结果= 1223.如何让它们正常添加,即使结果= 35?请帮忙。
答案 0 :(得分:2)
您可以使用函数parseInt
将字符串转换为数字。
mathOp: function(){
if (this.get('operator') == '+'){
var result = parseInt(this.get('opr1'), 10) + parseInt(this.get('opr2'), 10);
alert(result);
}
}