• 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>

  • 相关阅读:
    Python的正则表达式
    Python的异常处理
    Python的类和对象
    Python乘法口诀表
    Python的文件操作
    三层架构介绍和MVC设计模型介绍
    spring的组件使用
    IDEA使用maven搭建spring项目
    Java集合——Collection接口
    Java集合——概述
  • 原文地址:https://www.cnblogs.com/Lxiaojiang/p/6051274.html
Copyright © 2020-2023  润新知