我如何使用制表符进行实时过滤

问题描述 投票:1回答:1

我正在尝试在制表符主页上进行类似的过滤。我认为我没有提到应有的东西。我在控制台中看到的错误是:

Uncaught ReferenceError: $ is not defined
at index.html:110

这是110点的位置

$("#tabulator-controls input[name=feature]").on("keyup", function(){
  table.setFilter( "feature", "like", $(this).val())
});

整个代码:https://pastebin.com/szAiwPQZ

tabulator
1个回答
0
投票

我缺少对jquery-3.2.1.min.js的引用

© www.soinside.com 2019 - 2024. All rights reserved.