zoukankan      html  css  js  c++  java
  • js中取小数整数部分函数

    1.丢弃小数部分,保留整数部分

     js:parseInt(7/2)

    2.向上取整,有小数就整数部分加1

    js: Math.ceil(7/2)
    3,四舍五入.
    js: Math.round(7/2)
    4,向下取整
    js: Math.floor(7/2)
    附:如何判断输入的数值类型(使用时不带引号!)

    "^\\d+$"  //非负整数(正整数   +   0)     
       "^[0-9]*[1-9][0-9]*$"  //正整数     
       "^((-\\d+)|(0+))$"  //非正整数(负整数   +   0)     
       "^-[0-9]*[1-9][0-9]*$"  //负整数     
       "^-?\\d+$"    //整数     
       "^\\d+(\\.\\d+)?$"  //非负浮点数(正浮点数   +   0)     
       "^(([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*))$"  //正浮点数     
       "^((-\\d+(\\.\\d+)?)|(0+(\\.0+)?))$"  //非正浮点数(负浮点数   +   0)     
       "^(-(([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*)))$"  //负浮点数     
       "^(-?\\d+)(\\.\\d+)?$"  //浮点数

    举例:

    var   r   =   /^[0-9]*[1-9][0-9]*$/  //正整数    

    r.test(str);   //str为你要判断的字符 执行返回结果 true 或 false

  • 相关阅读:
    Django报错 No module named 'django.templates'
    Django 创建 hello world
    python(Django2.0) 安装
    create-react-app踩坑记
    Vue项目的痛点
    React 错误处理(componentDidCatch)
    Vue props双向绑定
    redux 中的 redux-thunk(中间件)
    webpack 搭建React(手动搭建)
    vue interceptors(拦截器)
  • 原文地址:https://www.cnblogs.com/yony/p/2565976.html
Copyright © 2011-2022 走看看