来源:http://zhidao.baidu.com/question/277893180.html 如果是整数:去掉整数前的零 例如:0098765--->98765 如果是小数:去掉小数前的零 例如:000.333--->0.333 再例如000.00--->0.00 <input onblur="b=this.value;b=(b+'').replace(/^0+\./g,'0.');b.match(/^0+[1-9]+/)?b=b.replace(/^0+/g,''):b;this.value=Number(b)?b:0;">原文链接:https://www.f2er.com/regex/362976.html