Number to Word - jquery

后端 未结 5 1274
忘了有多久
忘了有多久 2020-12-06 07:35

Anyone know\'s a way to describe a cash value or a plugin who does that ?

exp: if i have $ 1.200.000,00 and the user hover() the value:

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-06 07:59

    Validation for text box allowing only one dot

    if(!document.getElementById("per").value.match(/^[0-9]*\.?[0-9]*$/)) //"per" is the id text box
    {
       alert("Enter Correct Interest Rate");
       return (false);
    }
    

    I hope this might help.

提交回复
热议问题