码迷,mamicode.com
首页 > 其他好文 > 详细

layui实现table表格的“关键字搜索”功能

时间:2018-04-26 18:20:31      阅读:3995      评论:0      收藏:0      [点我收藏+]

标签:timeout   取数   flink   md5   inf   active   nbsp   load   dex   

  1     $(‘#searchBtn‘).on(‘click‘,function(){
  2         var type = $(this).data(‘type‘);
  3         active[type] ? active[type].call(this) : ‘‘;
  4     });
  5     // 点击获取数据
  6     var  active = {
  7  getInfo: function () {
 88             var fileName=$(‘#fileName‘).val();
 89             // var startTime=$(‘#startTime‘).val();
 90             // var endTime=$(‘#endTime‘).val();
 91             var timeRange=$(‘#timeRange‘).val();
 92             if ($(‘#fileName‘).val()||$(‘#md5Name‘).val()||$(‘#timeRange‘).val()) {
 93                 var index = layer.msg(‘查询中,请稍候...‘,{icon: 16,time:false,shade:0});
 94                 setTimeout(function(){
 95                     table.reload(‘flinklist‘, {
 96                         where: {
 97                             ‘fileName‘:fileName,
 98                             ‘timeRange‘:timeRange
 99                         }
100                     });
101                     layer.close(index);
102                 },800);
103             } else {
104                 table.reload(‘flinklist‘, {where: {
105                         ‘fileName‘:fileName,
106                         ‘timeRange‘:timeRange
107                     }});
108                 table.reload(‘‘)
109             }
110         },
111     };
1  //html代码
2 <a class="layui-btn search_btn "  id="searchBtn"  data-type="getInfo" style="margin-left: 15px;">查询</a>

 

layui实现table表格的“关键字搜索”功能

标签:timeout   取数   flink   md5   inf   active   nbsp   load   dex   

原文地址:https://www.cnblogs.com/yangguoe/p/8953830.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!