0

当我在我的键盘上单击输入时,我有这样的代码来显示模式窗口:

  $(".search-input").keypress(function(e) {
    if(e.which == 13) {
      $('#screen').css({ opacity: 0.5, 'width':$(document).width(),'height':$(document).height()});
      $('#screen').show();
      $('#loading_modal').show();    
    }
  });

但我需要自定义它,如果输入的类 .search-input 值小于 3,我没有显示任何模态窗口...

我这样尝试:

  $(".search-input").keypress(function(e) {
    if(e.which == 13) {
      if($(".search-input").value.length > 2) {
        $('#screen').css({ opacity: 0.5, 'width':$(document).width(),'height':$(document).height()});
        $('#screen').show();
        $('#loading_modal').show();    
      }
    }
  });

但由于某些原因它不起作用(如何解决我的问题?

4

2 回答 2

2

用于trim()删除空格和val()

试试这个

  if($.trim($(this).val()).length > 2) {
      ......
于 2013-04-12T10:18:52.493 回答
1

这基本上将替换任何文本:

$(".search-input").value.replace(/{.*?}/g, '').length > 2

试试这个:

$.trim($(this).val().replace(/[^\w\s]/g, '')).length > 2

如果您真的只想要搜索字符串中的字母,请执行以下操作:

$(this).val().replace(/[^a-z]/gi, '').length > 2
于 2013-04-12T10:24:05.380 回答