jquery 格式化數字字串 小數字

2022-05-14 04:31:29 字數 474 閱讀 7871

用於頁面上格式化數字字串,此**為工作時所需,留作筆記,比較常用。

/**

* author: xg君

* 描述: 格式化數字字串,格式化小數字

* obj為需要格式的物件(例如:input標籤)

* maxlength 為最大小數字長度

* minlength 為最小小數字長度

*/function tofloat(id,maxlength,minlength)

else

}else

}else

$("#

"+id).val(result);

}function retofloat(htmlval,maxlength,minlength)

else

}else

}else

return

result;

}

格式化數字字串

標準數字格式字串 c or c 貨幣 f 1.23 結果 1.23 或 1.23 d or d 十進位制 f 2 結果 002 在前面補0,補足3位 e or e 科學計數法 f math pi 結果 3.142e 000 f or f 固定的點。精確說明小數點後的位數 f math pi 結果 3...

格式化數字字串

標準數字格式字串 c or c 貨幣 f 1.23 結果 1.23 或 1.23 d or d 十進位制 f 2 結果 002 在前面補0,補足3位 e or e 科學計數法 f math pi 結果 3.142e 000 f or f 固定的點。精確說明小數點後的位數 f math pi 結果 3...

C 格式化數字字串的方法

using system using system.collections.generic using system.linq using system.text using system.threading.tasks namespace 2018 05 04 am 1520 格式化數字字串 in...