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

时间:2018-03-28 06:15:24

标签: javascript vue.js

我在使用Vue.js删除值中的逗号时遇到问题。以下是我的代码:

displayValue(){
    var displayValue = this.value;
    console.log(displayValue);
    if(displayvalue has comma){
        displayvalue = displayvalue(remove comma)
    }
}

我尝试使用indexOF(),但它无效。

.replace之前: enter image description here

.replaceenter image description here

2 个答案:

答案 0 :(得分:1)

if (displayvalue.indexOf(',') !== -1) {
  displayvalue = displayvalue.replace(/,/g, '');
}

答案 1 :(得分:0)

只需使用,

替换replace即可
displayValue(){
    var displayValue = this.value || ""; //check if this.value is null
    displayValue = String(displayValue).replace(/,/g, ""); //replace ,
}