所以我有这段代码:
var thisValue = $("input[id*=ID222]").val();
thisValue = thisValue.replace(',','');
基本上我想删除此输入元素中的所有逗号,以便进行进一步处理。上面的代码在字段中只有一个逗号时有效,但不适用于多个逗号。还有另外一种方法吗?我尝试了replaceAll,但它没有用。
答案 0 :(得分:7)
您必须使用正则表达式进行全局替换。您不能通过将字符串传递给replace
:
thisValue = thisValue.replace(/,/g,'');