Regex to replace everything except numbers and a decimal point

后端 未结 4 542
野趣味
野趣味 2020-11-27 03:31

I have a text field that needs to remain only text or decimal. Here is the code that I\'m currently using to replace everything except numbers and a decimal point. Issue is,

4条回答
  •  情深已故
    2020-11-27 03:49

    Use this:

    document.getElementById(target).value = newVal.replace(/[^0-9.]/g, "");
    

提交回复
热议问题