只能输入数字

<script>
$("#tnum").keyup(function (e) {
if (isNaN(Number($(this).val()))) {
$(this).val('');
}
});
$("#tnum").blur(function () {
var v = $(this).val();
if (v == "") {
$(this).val(0);
}
});
</script>

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