zoukankan      html  css  js  c++  java
  • html text计算限制功能

    数字格式 1~100 保留小数点后两位


    <input type="text" id="bizText" oninput="checkNum(this)" pattern="[0-9.]*" maxlength="5"/>% function checkNum(obj) {         //只能输入数字和. obj.value=obj.value.replace(/[^d.]/g,''); //检查是否是非数字值 if (isNaN(obj.value)) { obj.value = ""; } if (obj != null) { //检查小数点后是否对于两位 if (obj.value.toString().split(".").length > 1 && obj.value.toString().split(".")[1].length > 2) { alert("小数点后多于两位!"); obj.value = ""; } //不能大于100 if(obj.value >100){ obj.value = ""; } } }

    待解决问题 键盘的联想功能不知道怎么解决

     

  • 相关阅读:
    python 模块包裹
    函数指针
    python界面
    python FileError
    python pickle
    python file
    python set
    python 字典的函数
    字典问题
    java学习笔记4
  • 原文地址:https://www.cnblogs.com/xuaninitial/p/7254088.html
Copyright © 2011-2022 走看看