使用jQuery强制输入为数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery强制输入为数字相关的知识,希望对你有一定的参考价值。
This tiny jQuery plug in forces a user to enter only numeric values on an input field by silently removing non-numeric values as they're entered. (Caution: Never rely on client-side validation; use server-side validation as well)
(function ($) { $.fn.forceNumeric = function () { return this.each(function () { $(this).keyup(function() { if (!/^[0-9]+$/.test($(this).val())) { $(this).val($(this).val().replace(/[^0-9]/g, '')); } }); }); }; })(jQuery); // Usage example: $('input.numeric').forceNumeric();
以上是关于使用jQuery强制输入为数字的主要内容,如果未能解决你的问题,请参考以下文章
使用 js 或 jQuery 强制空格从 HTML 输入字段转换为 %20 [重复]