zoukankan      html  css  js  c++  java
  • bootstrap panel 和table的使用

    一、HTML中的页面内容

    <div class="col-sm-12">
      <!-- <div class="m-b-md" style="text-align:'center'">
      <h3 id="task_statistic">得分统计</h3>
      </div> -->
      <div class="panel panel-default">
        <div class="panel-heading">
          <h3 class="panel-title">得分统计</h3>
        </div>
        <div class="panel-body">

    <!--table类下的table-hover,是鼠标经过的样式-->
          <table class="table table-hover ">
            <thead>
              <tr >
                <th class="panel-title">人物</th>
                <th class="panel-title">得分</th>
                <th class="panel-title">次数</th>
                <th class="panel-title">完成率</th>
              </tr>
            </thead>
            <tbody class="taskRows">
              <tr id="wpy_row0" >
                <td class="project-status">
                  <span id="task_wpy_id" class='label label-danger'>张三</span>
                </td>
                <td class="project-title" id="task_wpy_score">22</td>
                <td class="project-title" id="task_wpy_num">4</td>
                <td class="project-title">
                  <div class="progress progress-striped active m-b-sm"><!-- 进度条-->
                    <div style=" 40%;" class="progress-bar"><strong >4/10</strong></div>
                  </div>
                </td>
              </tr>
          </tbody>
        </table>
      </div>
    </div>
    </div>

  • 相关阅读:
    用DECODE进行排序
    linux下批量替换文件内容
    Linux下chkconfig命令详解
    linux 命令参数列表过长以及find用法
    参数上使用自定义注解在aop中无法获取到该参数
    AOP
    AOP aspect XML 配置
    AOP前世与今生,aspect
    ETL工具之——kettle使用简介
    ETL工具之kittle使用案例整理
  • 原文地址:https://www.cnblogs.com/Lxiaojiang/p/6051274.html
Copyright © 2011-2022 走看看