-3

JS 関数を組み合わせたいのですが、うまくいきません。誰かが私のコードについて提案していますか?

$(document).ready(function(){
  $(".searchs").keyup(function() {
    var searchbox = $(this).val();
    var dataString = 'searchword='+ searchbox;
    if(searchbox=='') {
      $("#display").hide();
    } else {
      $.ajax({
        type: "POST",
        url: "searchs.php",
        data: dataString,
        cache: false,
        success: function(html) {
          $("#display").html(html).show();
        }
      });
    }
    return false;
  });
  $(".searchs").focus(function(){
    var seachbox = $(searchbox).val();
    if(seachbox != '') {
      $("#display").show();
    }
  });
});
$(document).mouseup(function(e) {
  if ($("#display").is(":visible") && $(e.target).parents$("#display").length == 0) {
    $("#display").hide();
  }
});

参考までに、そのスクリプトはhttp://jsfiddle.net/bqQqN/15/から取得しました。私がやりたいことは、コードに mouseup 関数を追加することです。誰?

4

1 に答える 1

0

2つを組み合わせたい場合(アクションは同じですが)、

    $(document).ready(function(){
// ... whatever is already here
    }).mouseup(function(e) {
      if ($("#display").is(":visible") && $(e.target).parents$("#display").length == 0) {
        $("#display").hide();
      }
    });
于 2012-12-03T08:12:11.220 に答える