js 验证input文本框只能输入数字和小数点

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="score" style=" 50px;" name="score"
onblur="check(this)" onkeyup="this.value=this.value.replace(/[^0-9.]/g,'')"

input增加<>即可

原文地址:https://www.cnblogs.com/liuhaotian548/p/15659952.html