当前位置: 编程技术>jquery
JQuery实现INPUT只能输入数字与小数点
来源: 互联网 发布时间:2014-10-04
本文导语: 一例只能输入数字和小数点的JQuery代码,供大家参考。 例子: 代码示例: $(function () { $.fn.numeral = function () { $(this).css("ime-mode", "disabled"); this.bind("keypress", function (e) { var code = (e.keyCode...
一例只能输入数字和小数点的JQuery代码,供大家参考。
例子:
代码示例:
$(function () {
$.fn.numeral = function () {
$(this).css("ime-mode", "disabled");
this.bind("keypress", function (e) {
var code = (e.keyCode ? e.keyCode : e.which); //兼容火狐 IE
if (!$.browser.msie && (e.keyCode == 0x8)) //火狐下 不能使用退格键
{
return;
}
return code >= 48 && code
$.fn.numeral = function () {
$(this).css("ime-mode", "disabled");
this.bind("keypress", function (e) {
var code = (e.keyCode ? e.keyCode : e.which); //兼容火狐 IE
if (!$.browser.msie && (e.keyCode == 0x8)) //火狐下 不能使用退格键
{
return;
}
return code >= 48 && code