往前走,一片诱人的新绿尽收眼底,那是满池的新荷。荷叶有的平展着圆盘浮在水面上;有的绿伞般在空中摇曳;有的兜着水珠把阳光反射得灿烂夺目;有的长得非常高,却未展开叶面,勇敢地挺立着。荷花则多半含苞待放,白中透粉的一朵朵花儿,活像一个个花仙子借着微风,在池中裙袂飞扬,翩然起舞。
使用jquery-datatable插件
bootstrap前端框架
json
一.创建demo.html
代码块
代码块语法遵循标准markdown代码,例如:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %> <!DOCTYPE html> <html lang="en" class="app"> <head> <meta charset="utf-8" /> <title>XXX服务平台</title> <meta name="description" content="app, web app, responsive, admin dashboard, admin, flat, flat ui, ui kit, off screen nav" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <link rel="stylesheet" rel="nofollow noopener noreferrer" href="<%=request.getContextPath()%>/www/AL_app/js/jPlayer/jplayer.flat.css" rel="external nofollow" type="text/css" /> <link rel="stylesheet" rel="nofollow noopener noreferrer" href="<%=request.getContextPath()%>/www/AL_app/css/bootstrap.css" rel="external nofollow" type="text/css" /> <link rel="stylesheet" rel="nofollow noopener noreferrer" href="<%=request.getContextPath()%>/www/AL_app/css/font.css" rel="external nofollow" type="text/css" /> <link rel="stylesheet" rel="nofollow noopener noreferrer" href="<%=request.getContextPath()%>/www/AL_app/css/app.css" rel="external nofollow" type="text/css" /> <link rel="stylesheet" rel="nofollow noopener noreferrer" href="<%=request.getContextPath()%>/www/AL_app/js/datatables/datatables.css" rel="external nofollow" type="text/css"/> <!--[if lt IE 9]> <script src="js/ie/html5shiv.js"></script> <script src="js/ie/respond.min.js"></script> <script src="js/ie/excanvas.js"></script> <![endif]--> </head> <body class="" <!-- ***********医用药典开始************** --> <section id="content"> <section class="vbox"> <section class="scrollable padder"> <div class="m-b-md"> <h3 class="m-b-none"></h3> </div> <div class="m-b-md"> <h3 class="m-b-none">中医药典</h3> </div> <section class="panel panel-default"> <header class="panel-heading"> 清单 <i class="fa fa-info-sign text-muted" data-toggle="tooltip" data-placement="bottom" data-title="ajax to load the data."></i> </header> <div class="table-responsive"> <table class="table table-striped m-b-none" data-ride="datatables"> <thead> <tr> <th style="width:15%" >序号</th> <th style="width:20%">药名</th> <th style="width:20%">拼音简称</th> <th style="width:15%">用法</th> <th style="width:15%">操作</th> </tr> </thead> <tbody> </tbody> </table> </div> </section> </section> </section> <a rel="nofollow noopener noreferrer" href="#" rel="external nofollow" class="hide nav-off-screen-block" data-toggle="class:nav-off-screen,open" data-target="#nav,html"></a> </section> <!-- ***********医用药典结束************** --> </section> </section> </section> <script src="<%=request.getContextPath()%>/www/AL_app/js/jquery.min.js"></script> <!-- Bootstrap --> <script src="<%=request.getContextPath()%>/www/AL_app/js/bootstrap.js"></script> <!-- App --> <script src="<%=request.getContextPath()%>/www/AL_app/js/app.js"></script> <script type="text/javascript" src="<%=request.getContextPath()%>/www/AL_app/js/jPlayer/demo.js"></script> <script src="<%=request.getContextPath()%>/www/AL_app/jh_js/jq.dataTable.js"></script> <script src="<%=request.getContextPath()%>/www/AL_app/js/datatables/jquery.csv-0.71.min.js"></script> <script src="<%=request.getContextPath()%>/www/AL_app/drugs/demo.js"></script> <script src="<%=request.getContextPath()%>/www/AL_app/js/app.plugin.js"></script> </body> </html>
二.创建一个drugs.json
{ "aaData": [ { "序号": "1", "药名": "白术", "拼音简称": "bzh", "用法": "内服", "操作": "编辑" }, { "序号": "3", "药名": "白术", "拼音简称": "bzh", "用法": "内服", "操作": "编辑" }, { "序号": "4", "药名": "白术", "拼音简称": "bzh", "用法": "内服", "操作": "编辑" }, { "序号": "5", "药名": "白术", "拼音简称": "bzh", "用法": "内服", "操作": "编辑" }, { "序号": "6", "药名": "白术", "拼音简称": "bzh", "用法": "内服", "操作": "编辑" } ]
三.创建一个demo.js
/** 使用jquery-datatable异步请求数据创建表格 **/ +function ($) { "use strict"; $(function(){ // datatable $('[data-ride="datatables"]').each(function() { var oTable = $(this).dataTable( { "bProcessing": true, "sAjaxSource": "www/AL_app/drugs/drugs.json",//异步请求json数据 "sDom": "<'row'<'col-sm-6'l><'col-sm-6'f>r>t<'row'<'col-sm-6'i><'col-sm-6'p>>", "sPaginationType": "full", //给表格单元的头信息命名 "aoColumns": [ { "mData": "序号" }, { "mData": "药名" }, { "mData": "拼音简称" }, { "mData": "用法" }, { "mData": "操作" } ] } ); }); }(window.jQuery);
四.截图如下所示
以上所述是小编给大家介绍的使用jquery datatable和bootsrap创建表格实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
以上就是使用jquery datatable和bootsrap创建表格实例代码。俗话说:退一步海阔天空;可俗话又说:狭路相逢勇者胜!做人做事不要太处处逼人,给别人方便就是给自己方便,但是与到欺人太甚的也不要过于谦让,那会让他更嚣张,要有勇有谋,才是真英雄。更多关于使用jquery datatable和bootsrap创建表格实例代码请关注haodaima.com其它相关文章!