js+jquery总结 数字_四舍五入

//数字 指定位数后 四舍五入
function RoundNumber(num, pos)
{
    return Math.round(num * Math.pow(10, pos)) / Math.pow(10, pos);
}

 

//指定文本框内容实时改变事件

 

 

-----------------------------------

悠然忆人记相思    如果觉得这篇文章对您有所帮助,请留下您的评论,谢谢.

你可能感兴趣的:(C#,ASP.NET)