我在使用Vue.js删除值中的逗号时遇到问题。以下是我的代码:
displayValue(){
var displayValue = this.value;
console.log(displayValue);
if(displayvalue has comma){
displayvalue = displayvalue(remove comma)
}
}
我尝试使用indexOF()
,但它无效。
答案 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 ,
}