4

我想input.val().length <= 3在> 3个字符时显示工具提示然后隐藏工具提示

看一下这个:

<input type="text" id="nav-search"/>


$('#nav-search').on('keyup',function(){
   var _keys = $(this).val();
   if(_keys.length <= 3){
   $(this).tooltip({'trigger':'focus',position:'right'});
   $(this).trigger('focusin');

   }
  });

它显然不起作用:/

4

2 回答 2

8

从理论上讲,它应该工作:

$("#nav-search").on("keyup", function() {
    if (this.value.length <= 3) {
        $(this).tooltip("show");
    } else {
        $(this).tooltip("hide");
    }
}).tooltip({
    placement: "right",
    trigger: "focus"
});​

实际上,它有效。

演示:http: //jsfiddle.net/FvxnN/

于 2012-09-25T10:33:14.047 回答
1
$('#nav-search').bind('keyup',function(){
   var _keys = $(this).val();
   if(_keys.length <= 3){
   $(this).tooltip({'trigger':'focus',position:'right'});
   $(this).trigger('focusin');

   }else{

  //perform some action
  }
  });
于 2012-09-25T10:33:13.900 回答