代码块语法遵循标准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 + "/";
%>
<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"
href="<%=request.getContextPath()%>/www/AL_app/js/jPlayer/jplayer.flat.css"
type="text/css" />
<link rel="stylesheet"
href="<%=request.getContextPath()%>/www/AL_app/css/bootstrap.css"
type="text/css" />
<link rel="stylesheet"
href="<%=request.getContextPath()%>/www/AL_app/css/font.css"
type="text/css" />
<link rel="stylesheet"
href="<%=request.getContextPath()%>/www/AL_app/css/app.css"
type="text/css" />
<link rel="stylesheet" href="<%=request.getContextPath()%>/www/AL_app/js/datatables/datatables.css" type="text/css"/>
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 href="#" 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>
<script src="<%=request.getContextPath()%>/www/AL_app/js/bootstrap.js">script>
<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>
{
"aaData": [
{
"序号": "1",
"药名": "白术",
"拼音简称": "bzh",
"用法": "内服",
"操作": "编辑"
},
{
"序号": "3",
"药名": "白术",
"拼音简称": "bzh",
"用法": "内服",
"操作": "编辑"
},
{
"序号": "4",
"药名": "白术",
"拼音简称": "bzh",
"用法": "内服",
"操作": "编辑"
},
{
"序号": "5",
"药名": "白术",
"拼音简称": "bzh",
"用法": "内服",
"操作": "编辑"
},
{
"序号": "6",
"药名": "白术",
"拼音简称": "bzh",
"用法": "内服",
"操作": "编辑"
}
]
/** 使用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);