使用 Bootstrap 向特定的表格行或单元格指示成功操作


若要使用 Bootstrap 向特定的表格行或单元格指示成功操作,请使用 .success 类。可以尝试运行以下代码来实现 .success 类 −

示例

在线示例

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Table</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "table-responsive">
         <table class = "table">
            <thead>
               <tr>
                  <th>Subject</th>
                  <th>Marks</th>
                  <th>Type</th>
               </tr>
            </thead>
            <tbody>
               <tr>
                  <td>C</td>
                  <td>65</td>
                  <td>Programming Language</td>
               </tr>
               <tr class = "success">
                  <td>PHP</td>
                  <td>92</td>
                  <td>Scripting Language</td>
               </tr>
               <tr>
                  <td>jQuery</td>
                  <td>80</td>
                  <td>JavaScript Library</td>
               </tr>
            </tbody>
         </table>
      </div>
   </body>
</html>

更新于: 2020 年 6 月 12 日

98 次浏览

开启您的 职业生涯

完成课程获得认证

开始
广告