jstl 保留两位小数: <fmt:formatNumber var="housePriceFormate" value="${unitList[0].housePrice}" pattern="0.00"/> <td id="housePrice">${housePriceFormate}元/㎡</td>
js String 转float 保留两位小数: parseFloat(hsArea).toFixed(2)不能用parseInt
本文共 272 字,大约阅读时间需要 1 分钟。
jstl 保留两位小数: <fmt:formatNumber var="housePriceFormate" value="${unitList[0].housePrice}" pattern="0.00"/> <td id="housePrice">${housePriceFormate}元/㎡</td>
js String 转float 保留两位小数: parseFloat(hsArea).toFixed(2)不能用parseInt
转载于:https://my.oschina.net/maoguangdong/blog/788278