04 2020 档案
摘要:package cn.com.utils; public class NumToChineseUtil { /** * Java 好用的 * int 数字转中文 * @param src * @return */ public static String read(int src) { final
阅读全文
摘要:DecimalFormat df =new DecimalFormat(",##0.00"); df.format("123456.12556") // 结果: 123,456.13 // freemarker写法 // ${plan.premium?string(",##0.00")}
阅读全文
摘要:$(function() { $(".limitbtn").each(function() { $(this)[0].addEventListener('click', function() { $(this).css("pointer-events", "none"); setTimeout(fu
阅读全文