js 验证文本框只能输入数字和小数点
Posted - 精光互撸娃 .
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 验证文本框只能输入数字和小数点相关的知识,希望对你有一定的参考价值。
第一步、添加js方法
function check(e) {
var re = /^\d+(?=\.{0,1}\d+$|$)/
if (e.value != "") {
if (!re.test(e.value)) {
alert("请输入正确的数字");
e.value = "";
e.focus();
}
}
}
第二步、调用【加粗的都要有】
<input type="text" id="achievementScore" class="tab_bor2" name="scoreCheck.achievementScore"
onblur="check(this)" onkeyup="this.value=this.value.replace(/[^0-9.]/g,‘‘)" />
function check(e) {
var re = /^\d+(?=\.{0,1}\d+$|$)/
if (e.value != "") {
if (!re.test(e.value)) {
alert("请输入正确的数字");
e.value = "";
e.focus();
}
}
}
第二步、调用【加粗的都要有】
<input type="text" id="achievementScore" class="tab_bor2" name="scoreCheck.achievementScore"
onblur="check(this)" onkeyup="this.value=this.value.replace(/[^0-9.]/g,‘‘)" />
以上是关于js 验证文本框只能输入数字和小数点的主要内容,如果未能解决你的问题,请参考以下文章