1. 程式人生 > >JQ控制input只能輸入小數點後兩位

JQ控制input只能輸入小數點後兩位

html

<!DOCTYPE html>
<html>
    <head>
        <title>demo</title>
    </head>
    <body>
        <input type="text" onkeyup="clearNoNum(this)">
    </body>
</html>

jq

function num(obj){
   obj.value = obj.value.replace(/[^\d.]/g,""); //清除"數字"和"."以外的字元
obj.value = obj.value.replace(/^\./g,""); //驗證第一個字元是數字 obj.value = obj.value.replace(/\.{2,}/g,"."); //只保留第一個, 清除多餘的 obj.value = obj.value.replace(".","$#$").replace(/\./g,"").replace("$#$","."); obj.value = obj.value.replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3'); //只能輸入兩個小數 }