Сообщение от Hurray
|
как сделать, чтобы можно было вводить еще и дробные значения с разделителем-запятой?
|
<input onblur="this.value = this.value.replace(/[^\d.,]/g, '').replace(/(\d+)([.,]\d+)?/g, function (c, b, a) {
return b.replace(/(\d)(?=(\d{3})+$)/g, '$1 ') + (a ? a : '')
})" name="cost" value="" onfocus="this.value = this.value.replace(/\s/g, '');this.focus()" >