0

jquery grep 可以与数组一起使用,例如

   var Categories= [{label:"cat1", value:"1"}, ... ] 

例如在自动过滤器中

 $(function() {
      a = $('#Cats').autocomplete({
          source: function(req, response) {
              var re = $.ui.autocomplete.escapeRegex(req.term);
              var matcher = new RegExp("^" + re, "i");
              response($.grep(Categories, function(item) {
                  return matcher.test(item);
              }));
          },
          minLength: 0, autoFocus: true

       ,
          select: function(event, ui) {
              AutoCompleteSelectionHandler2(event, ui)
          }

      });
  });

以便它过滤标签并返回值?

我尝试了各种排列的 response($.grep(Categories, function(item) { return matcher.test(item);

我只能让它与数组一起使用

 var Categories= [ "cat1", "cat2", ...]
4

1 回答 1

1

问题是这item是一个对象而不是字符串。尝试

return matcher.test(item.label);
于 2013-05-21T16:22:03.003 回答