gpt4 book ai didi

javascript - vuejs方法中的Parseint

转载 作者:行者123 更新时间:2023-11-30 10:58:15 27 4
gpt4 key购买 nike

例如让 this.last 为 5 和 this.current 60 ,我想要 this.last + this .current 为 65 而不是 60 5. 我尝试了 parseInt(this.last + this.current) 但它不起作用

<button class="plus" @click="plus">+</button>
<input class="res" v-model="current" maxlength="24" disabled>
<input class="res2" v-model="last" maxlength="24" disabled>
button{
width:200px;
height:200px;
}
data:{
last: null,
current: " ",
plusClicked: false
}
methods:{
plus:function(){
this.last = this.current;
this.current = " ";
this.plusClicked = true;
},
equal:function(){
if(this.plusClicked == true){
alert(parseInt(this.last + this.current));
this.plusClicked = !true;
}
}},

最佳答案

首先,不要初始化this.current" "但到0 .

您还应该将输入字段的类型更改为 <input type="number"> .

要将两个数字相加,请使用:

  • parseInt(this.last) + parseInt(this.current)

关于javascript - vuejs方法中的Parseint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59130031/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com