我正在尝试使用引导过滤器
使用实时过滤器搜索来搜索数据$scope.clearForm = function (formId) {
$scope.noteForm.$setPristine(); //you should use setPristine that will make for pristine
$scope.note = {}; //this will clear a form values.
};
这是我正在使用的脚本,我想搜索该代码的数据。
答案 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();
}
});
});
});