IE と Chrome で機能する機能を見つけましたが、Mozilla では機能しません。Mozilla で動作しない理由を誰かが知っているのではないでしょうか?
function on(evt) {
var theEvent = evt || window.event;
var key = theEvent.keyCode || theEvent.which;
key = String.fromCharCode( key );
var regex = /^[0-9.,]+$/;
if( !regex.test(key) ) {
theEvent.returnValue = false;
if(theEvent.preventDefault) theEvent.preventDefault();
}
}