使用引导程序进行实时过滤搜索

时间:2015-06-19 09:12:28

标签: javascript php jquery twitter-bootstrap

我正在尝试使用引导过滤器

使用实时过滤器搜索来搜索数据
$scope.clearForm = function (formId) {
    $scope.noteForm.$setPristine(); //you should use setPristine that will make for pristine
    $scope.note = {}; //this will clear a form values.
};

这是我正在使用的脚本,我想搜索该代码的数据。

1 个答案:

答案 0 :(得分:0)

在您的页面中完成实时搜索而不刷新

$(document).ready(function() {

    $("#search").keyup(function() {

    var val = $(this).val().toLowerCase();

    $(".data_li").hide();

       $(".data_li").each(function() {

        var text = $(this).text().toLowerCase();

         if(text.indexOf(val) != -1)
         {

             $(this).show(); 

         }

       });

    });

});