3

我想限制用户在 html 文本框中只输入字符。我正在使用以下代码

 $('.alphaonly').live("input", function () {
     $(this).val($(this).val().replace(/[^A-Za-zÀ-ÿ ]/g, ''));
 });

这在 IE9 中运行良好,但在 IE8 中失败。

谁能帮我修一下?

4

4 回答 4

3

我的意思是使用插件要容易得多:

http://www.thimbleopensource.com/tutorials-snippets/jquery-plugin-filter-text-input

$('#text_input').filter_input({regex:'[a-z]'}); 
于 2012-09-07T13:02:18.030 回答
2

对旧版浏览器使用keyupand事件:mouseup

 $('.alphaonly').on("keyup mouseup input", function () {
     $(this).val($(this).val().replace(/[^A-Za-zÀ-ÿ ]/g, ''));
 });​

inputIE < 9 不支持该事件。您可以使用和完成几乎相同的功能。此外,从 jQuery 1.7 开始,不推荐使用.keyupmouseup.live().on()

演示

于 2012-09-07T12:56:57.147 回答
0
Try this ...
$('.alphaonly').live({
   keyup : function () {
     $(this).val($(this).val().replace(/[^A-Za-zÀ-ÿ ]/g, ''));
   }
});
于 2012-09-07T12:58:20.863 回答
0
//If you consider doing it plain JavaScript way, without JQuery      
 function lettersOnly(evt) {
   evt = (evt) ? evt : event;
   var charCode = (evt.charCode) ? evt.charCode : ((evt.keyCode) ? evt.keyCode :
      ((evt.which) ? evt.which : 0));
   if (charCode > 31 && (charCode < 65 || charCode > 90) &&
      (charCode < 97 || charCode > 122)) {
      alert("Enter letters only.");
      return false;
   }
   return true;
 }
于 2013-01-15T04:37:24.080 回答