限制input只能输入金额 JS代码: function checkInput(_this) { if (_this.value != '' && _this.value.substr(0, 1) == '.') { _this.value = '0.00' } if (_this.value == '') { _this.value = '0.00' } _this.value = _this.value.replace(/^0*(0\.|[1-9])/, '$1') // 禁止粘贴 _this.value = _this.value.replace(