文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>js控制文本栏只能输入数字

js控制文本栏只能输入数字

时间:2010-10-17  来源:linzheng

 <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*/, '');   

            });   

        };  

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载