开发者问题收集

如何在 Vue.js 中删除值中的逗号

2018-03-28
3166

我在使用vue.js中删除逗号的逗号方面有问题。以下是我的代码:

526375821

我已经尝试使用 indexof() ,但它不起作用。

.replace : “

后.replace “

2个回答
984815570
CertainPerformance
2018-03-28

只需使用 replace 替换 , 即可

displayValue(){
    var displayValue = this.value || ""; //check if this.value is null
    displayValue = String(displayValue).replace(/,/g, ""); //replace ,
}
gurvinder372
2018-03-28