$(function(){
//テキスト ボックスには数値 (小数点を除く) のみを入力でき、入力メソッドをブロックして貼り付けることができます
$.fn.integer= function() {
$(this).css("ime-mode", "disabled") ;
this.bind("keypress",function(e) {
var code = (e.keyCode ? e.keyCode : e.that); //Firefox IE と互換性があります
if(!$ .browser.msie&& (e.keyCode==0x8)){ //Firefox ではバックスペースキーは使用できません
return ;
}
return code >= 48 && code});
this.bind("paste", function() {
return false;
});
this.bind("keyup", function() {
if (/(^0 )/.test(this.value)) {
this.value = this.value.replace(/^0*/, '');
}
}; 🎜>};
//テキスト ボックスには数値 (小数を含む) のみを入力でき、入力メソッドと Past
$.fn.number= function() {
$(this) がブロックされます。 ).css("ime-mode", "disabled");
this.bind("keypress",function(e) {
var code = (e.keyCode ? e.keyCode : e.this) ; //Firefox IE と互換性があります
if(!$.browser.msie&&(e.keyCode==0x8)){ //Firefox ではバックスペースキーは使用できません
return ; if(this.value.indexOf(" .")==-1){
return (code >= 48 && code} 🎜>リターン コード >= 48 && コード}
});
this.bind("paste", function() {
return false;
});
this.bind("keyup ", function() {
if(this.value.slice(0,1) == "."){
this.value = "";
}
});
this.bind("blur",function(){
if(this.value.slice(-1) == "."){
this.value = this.value.slice(0,this .value.length-1);
});