美文网首页
toFixed()、Math.round()、向文本添加符号

toFixed()、Math.round()、向文本添加符号

作者: 深呼吸10911 | 来源:发表于2022-01-05 15:50 被阅读0次
    toFixed()
    
     With rotation = 1, rotation.value.toFixed(2) will give 1.00
    • With rotation = 1.234, rotation.value.toFixed(0) will give 1
    • With rotation = 1.234, rotation.value.toFixed(2) will give 1.23
    

    相关文章

      网友评论

          本文标题:toFixed()、Math.round()、向文本添加符号

          本文链接:https://www.haomeiwen.com/subject/nbguxrtx.html