我目前使用的代码在显示击键后编辑文本框值:
$('.number').keypress(function() { this.value = this.value.replace(/[^0-9\.]/g,''); });
$('.number').keypress(function() { if ( this.value == 'foobar' ){ // "Cancel" keystroke return false; } this.value = this.value.replace(/[^0-9\.]/g,''); });