文本框只能输入小数点和数字 或者只能输入 数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本框只能输入小数点和数字 或者只能输入 数字相关的知识,希望对你有一定的参考价值。
//只能输入数字
$(".int").attr("onkeyup", "this.value=this.value.replace(/[^\\\d]/g,‘‘)");
$(".int").attr("onkeypress", "onlyNumber(event);");
$(".int").attr("onafterpaste", "onlyNumber(event);");
//只能输入小数点
$(".decimal").attr("onkeyup", "this.value=this.value.replace(/[^\\\d\\\.]/g,‘‘)");
$(".decimal").attr("onkeypress", "onlyNumber(event);");
$(".decimal").attr("onafterpaste", "onlyNumber(event);");
以上是关于文本框只能输入小数点和数字 或者只能输入 数字的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 中怎样判断文本框只能输出英文字母、汉字和数字,不能输入特殊字符!