输入框为数字

$(document).ready(function () {
$('.Zhiji').find('input').each(function ()
{
this.Attr("onKeypress", "return check(String.fromCharCode(event.keyCode))");
})
})
function check(v) {
var r = /[\d.]/;
if (!r.test(v)) {
alert('只能输入数字');
return false;
}
}

你可能感兴趣的:(输入框为数字)