基于layui数据表格以及传数据的方式


Posted in Javascript onAugust 19, 2018

如下所示:

数据表格一:

<div style="margin:0px; background-color: white; margin:0 10px;">
    <blockquote class="layui-elem-quote">
    <div class="layui-btn-group demoTable">
      <button class="layui-btn" data-type="getCheckData">下载</button></div>
      <form class="layui-form" style="float:right;">
        <div class="layui-form-item" style="margin:0;">
          <label class="layui-form-label">名称</label>
          <div class="layui-input-inline">
            <input type="text" name="zname" placeholder="输入作业名称" autocomplete="off" class="layui-input">
          </div>
          <div class="layui-form-mid layui-word-aux" style="padding:0;">
            <button id="cha" lay-filter="search" class="layui-btn" lay-submit><i class="fa fa-search" aria-hidden="true"></i> 查询</button>
          </div>
        </div>
      </form>
    </blockquote>
  </div>
<table class="layui-table" lay-data="{url:'../task/selectTask.do', page:true, id:'test2'}">
 <thead>
  <tr>
   <th lay-data="{checkbox:true,fixed:true}"></th>
   <th lay-data="{field:'id', width:60, sort: true}">ID</th>
   <th lay-data="{field:'cid', width:150, sort: true}">课程id</th>
   <th lay-data="{field:'tid', width:150, sort: true}">教师id</th>
   <th lay-data="{field:'zname', width:150, sort: true}">作业名称</th>
   <th lay-data="{field:'ztime', width:150, sort: true,toolbar: '#timeTpl'}">提交时间</th>
   <th lay-data="{field:'zcontext', width:150, sort: true}">作业内容</th>
   <th lay-data="{field:'zremarks', width:150, sort: true}">备注</th>
   <th lay-data="{fixed: 'right', width:100, align:'center', toolbar: '#barDemo1'}"></th>
  </tr>
 </thead>
</table>

基于layui数据表格以及传数据的方式

数据传输方式

<script type="text/html" id="barDemo1">
 <a href="/?zname={{d.zname}}" rel="external nofollow" class="layui-btn layui-btn-mini" lay-event="edit">下载</a>
</script>

将参数绑定传入后台

jo.put("code", 0);
    jo.put("msg",":");
    jo.put("count", 1000);
    jo.put("data", list);

后台数据传入前台的方式

数据表格二:

<div class="admin-main">

      <blockquote class="layui-elem-quote">
        <a href="javascript:;" rel="external nofollow" rel="external nofollow" class="layui-btn layui-btn-small" id="add">
          <i class="layui-icon"></i> 添加信息
        </a>
        <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="layui-btn layui-btn-small" id="import">
          <i class="layui-icon"></i> 导入信息
        </a>
        <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="layui-btn layui-btn-small">
          <i class="fa fa-shopping-cart" aria-hidden="true"></i> 导出信息
        </a>
        <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="layui-btn layui-btn-small" id="getSelected">
          <i class="fa fa-shopping-cart" aria-hidden="true"></i> 获取全选信息
        </a>
        <a href="javascript:;" rel="external nofollow" rel="external nofollow" class="layui-btn layui-btn-small" id="search">
          <i class="layui-icon"></i> 搜索
        </a>
      </blockquote>
      <fieldset class="layui-elem-field">
        <legend>数据列表</legend>
        <div class="layui-field-box layui-form">
          <table class="layui-table admin-table">
            <thead>
              <tr>
                <th style="width: 30px;"><input type="checkbox" lay-filter="allselector" lay-skin="primary"></th>
                <th>编号</th>
                <th>用户名</th>
                <th>真实姓名</th>
                <th>性别</th>
                <th>电话</th>
                <th>邮箱</th>
                <th>公司</th>
                <th>职位</th>
                <th>政治面貌</th>
                <th>培训状态</th>
                <th>账号状态</th>
                <th>角色</th>
                <th>创建时间</th>
                <th>备注</th>
            
              </tr>
            </thead>
            <tbody id="content">
            </tbody>
          </table>
        </div>
      </fieldset>
      <div class="admin-table-page">
        <div id="paged" class="page">
        </div>
      </div>
    </div>

基于layui数据表格以及传数据的方式

以上这篇基于layui数据表格以及传数据的方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
javascript 最常用的10个自定义函数[推荐]
Dec 26 Javascript
Extjs407 getValue()和getRawValue()区别介绍
May 21 Javascript
JS的Document属性和方法小结
Sep 17 Javascript
jquery选择器之层级过滤选择器详解
Jan 27 Javascript
在JavaScript中使用timer示例
May 08 Javascript
javascript记住用户名和登录密码(两种方式)
Aug 04 Javascript
AngularJs  Understanding Angular Templates
Sep 02 Javascript
js es6系列教程 - 基于new.target属性与es5改造es6的类语法
Sep 02 Javascript
Vue的click事件防抖和节流处理详解
Nov 13 Javascript
js数据类型转换与流程控制操作实例分析
Dec 18 Javascript
javascript canvas API内容整理
Feb 16 Javascript
react的hooks的用法详解
Oct 12 Javascript
LayUi中接口传数据成功,表格不显示数据的解决方法
Aug 19 #Javascript
如何将HTML字符转换为DOM节点并动态添加到文档中详解
Aug 19 #Javascript
解决layui前端框架 form表单,table表等内置控件不显示的问题
Aug 19 #Javascript
layui框架table 数据表格的方法级渲染详解
Aug 19 #Javascript
详解微信小程序input标签正则初体验
Aug 18 #Javascript
vue实现键盘输入支付密码功能
Aug 18 #Javascript
记录一篇关于redux-saga的基本使用过程
Aug 18 #Javascript
You might like
通俗易懂的php防注入代码
2010/04/07 PHP
php实现文件下载代码分享
2014/08/19 PHP
php+ajax实现无刷新动态加载数据技术
2015/04/28 PHP
php实现上传图片文件代码
2015/07/19 PHP
关于WordPress的SEO优化相关的一些PHP页面脚本技巧
2015/12/10 PHP
PHP获取用户客户端真实IP的解决方案
2016/10/10 PHP
ThinkPHP5.1框架数据库链接和增删改查操作示例
2019/08/03 PHP
TP5框架实现自定义分页样式的方法示例
2020/04/05 PHP
用于自动添加Digg This!按钮的JavaScript
2006/12/23 Javascript
jquery对象和DOM对象的区别介绍
2013/08/09 Javascript
使用script的src实现跨域和类似ajax效果
2014/11/10 Javascript
2014年50个程序员最适用的免费JQuery插件
2014/12/15 Javascript
javascript实现日期格式转换
2014/12/16 Javascript
JavaScript实现鼠标滑过图片变换效果的方法
2015/04/16 Javascript
Javascript中的getUTCHours()方法使用详解
2015/06/10 Javascript
Javascript 函数的四种调用模式
2016/11/05 Javascript
JavaScript常用内置对象用法分析
2019/07/09 Javascript
Vue 解决路由过渡动画抖动问题(实例详解)
2020/01/05 Javascript
Python多线程编程(五):死锁的形成
2015/04/05 Python
解决uWSGI的编码问题详解
2017/03/24 Python
Python模块搜索路径代码详解
2018/01/29 Python
python多线程同步之文件读写控制
2021/02/25 Python
Python从入门到精通之环境搭建教程图解
2019/09/26 Python
python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析
2021/02/20 Python
HTML5文档结构标签
2017/04/21 HTML / CSS
丽笙酒店官方网站:Radisson Hotels
2019/05/07 全球购物
Huda Beauty官方商店:化妆和美容产品
2020/09/05 全球购物
高职助产应届生自荐信
2013/09/24 职场文书
医学生自我鉴定范文
2013/11/08 职场文书
《寓言两则》教学反思
2014/02/27 职场文书
学校端午节活动方案
2014/08/23 职场文书
庆祝儿童节标语
2014/10/09 职场文书
行政上诉状范文
2015/05/23 职场文书
婚庆司仪开场白
2015/05/29 职场文书
Vue-Element-Admin集成自己的接口实现登录跳转
2021/06/23 Vue.js
Java 中的 Lambda List 转 Map 的多种方法详解
2022/07/07 Java/Android