zoukankan      html  css  js  c++  java
  • html5 jquery bootstrap table 直接使用

    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="utf-8"/>
        <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
        <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
        <meta name="keywords" content="html5 bootstrap table 直接使用"/>
        <meta name="description" content="html5 bootstrap table 直接使用"/>
        <title>html5 bootstrap table 直接使用</title>
        
        <script src="http://cdn.bootcss.com/jquery/3.1.0/jquery.min.js"></script>
        <link href="http://cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
    
        <script>
    
        </script>
        
    </head>
    <body>
    
    <div class="table-responsive">
       <table class="table">
          <caption>响应式表格布局</caption>
          <thead>
             <tr>
                <th>产品</th>
                <th>付款日期</th>
                <th>状态</th>
             </tr>
          </thead>
          <tbody>
             <tr>
                <td>产品1</td>
                <td>23/11/2013</td>
                <td>待发货</td>
             </tr>
             <tr>
                <td>产品2</td>
                <td>10/11/2013</td>
                <td>发货中</td>
             </tr>
             <tr>
                <td>产品3</td>
                <td>20/10/2013</td>
                <td>待确认</td>
             </tr>
             <tr>
                <td>产品4</td>
                <td>20/10/2013</td>
                <td>已退货</td>
             </tr>
          </tbody>
       </table>
    </div>      
    
    </body>
    </html>
  • 相关阅读:
    如何编译Linux内核
    svn
    windows live writer …
    SVN服务器配置
    使用PowerDesigner创建数据库表图文并茂版
    maven学习
    在PreparedStatement中设置空值
    今天, 我的博客正式开通啦.
    Neo4j简介
    clinit和init(转载)
  • 原文地址:https://www.cnblogs.com/shaoing/p/5680508.html
Copyright © 2011-2022 走看看