zoukankan      html  css  js  c++  java
  • js控制文本栏只能输入数字

    Html代码

     <input type="text" id="txt1">  

     <input type="text" id="txt1">
    Html代码

    <script type="text/javascript">  

    $("#txt1").numeral();   

    </script>  

    <script type="text/javascript">  $("#txt1").numeral(); </script>
    Js代码

    $.fn.numeral = function(){   

                $(this).css("ime-mode","disabled");   

                this.bind("keypress",function(){   

                    if(event.keyCode == 46){   

                        if(this.value.indexOf(".")!=-1){   

                           return false;   

                        }   

                    }else{   

                        return event.keyCode>=46&&event.keyCode<=57;   

                    }   

                });   

                this.bind("blur",function(){   

                    if(this.value.lastIndexOf(".")==(this.value.length-1)){   

                        this.value = this.value.substr(0,this.value.length-1);   

                    }else if(isNaN(this.value)){   

                        this.value = "";                       

                    }   

                });   

                this.bind("paste",function(){   

                    var s=clipboardData.getData('text');    

                    if(!/\D/.test(s));    

                    value=s.replace(/^0*/,'');    

                    return false;   

                });   

                this.bind("dragenter",function(){   

                    return false;   

                });   

                this.bind("keyup",function(){   

                    if(/(^0+)/.test(this.value))this.value=this.value.replace(/^0*/, '');   

                });   

            };  

  • 相关阅读:
    [战略]当你收到面试通知后,如下的准备可以大大提升面试成功率
    tfzq & dml
    kjl & jsd(1yet)内存泄漏定位
    面试 sn (1yet) zk watcher原理
    thread.join的本质
    关于linux中的man
    linux 新手入门
    Linux 中如何卸载已安装的软件(转载)
    如何在Linux下创建与解压,安装zip, tar, tar.gz和tar.bz2文件
    Linux系统下如何查看及修改文件读写权限
  • 原文地址:https://www.cnblogs.com/linzheng/p/1853576.html
Copyright © 2011-2022 走看看