自定义下拉过滤: $('#cc').combobox({ filter: function (q, row) { if (row.text.indexOf(q) >= 0) { return true; } else { return false; } } }); 相关文章: