Restrict input field to two decimals with jQuery

前端 未结 8 828
天命终不由人
天命终不由人 2021-01-12 17:46

I have an input field which I want to restrict so that the user only can input a number with the maximum of two decimals. Want to do this using jQuery.

Could I use j

8条回答
  •  自闭症患者
    2021-01-12 18:02

    $("#myInput").focusout(function() {
        if ($(this).val().length > 2 || isNaN(Number($(this).val())) {
            alert("Wrong number format");
        }
    });
    

提交回复
热议问题