入力タイプに小数と数字のみを使用したいので、jqueryを使用していますが、問題は彼がより多くの小数を取っていることです????? 12345.12245.4554 では
なく、123.1245454 が好きです。
$('#edit-discount').keyup(function() {
var $th = $(this);
$th.val($th.val().replace(/[^0-9.]/g, function(str) {
$("#req-productdis").hide();
$("#alpha1").show();
return '';
}));