Maison > interface Web > js tutoriel > Comment faire fonctionner les tables dans Bootstrap

Comment faire fonctionner les tables dans Bootstrap

php中世界最好的语言
Libérer: 2018-03-23 16:56:36
original
1854 Les gens l'ont consulté

Cette fois, je vais vous montrer comment faire fonctionner les tables dans Bootstrap, et quelles sont les précautions lors de l'utilisation des tables dans Bootstrap. Voici des cas pratiques, jetons un coup d'oeil.

L'exemple de cet article décrit la table de fusion de cellules implémentée par Bootstrap. Partagez-le avec tout le monde pour votre référence, les détails sont les suivants :

1. Contexte du problème

Utilisez Bootstrap pour concevoir le tableau, et le tableau doit fusionner les cellules.

2. Code source de mise en œuvre

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <meta name="description" content="">

    <meta name="author" content="">

    <title>Bootstrap-表格合并单元格</title>

    <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.css" rel="external nofollow" />

    <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>

    <script type="text/javascript" src="https://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.js" ></script>

    <style>

      body,html{

        width: 99%;

        height: 98%;

        font-family: "微软雅黑";

        font-size: 14px;

      }

      table{

        width: 100%;

      }

    </style>

    <script>

    </script>

  </head>

  <body>

    <p class="row">

      <p class="col-xs-12">

        <table class="table table-striped">

          <tr>

            <td>

              <label for="stuNo">学号:</label>

              <input type="text" id="stuNo" />

              <p class="btn-group" style="width: 157px; height: 26px;">

                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" style="width: 157px; height: 26px;">

                  班级

                </button>

                <ul class="dropdown-menu" role="menu">

                 <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >一班</a></li>

                 <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >二班</a></li>

                 <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >三班</a></li>

                 <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >四班</a></li>

                 <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >五班</a></li>

                </ul>

              </p>

              <button type="button" class="btn btn-primary">查询</button>

              <button type="button" class="btn">重置</button>

            </td>

          </tr>

        </table>

      </p>

      <p class="col-xs-12">

        <p class="col-xs-2">

          <table class="table table-striped table-bordered">

            <caption>学生表</caption>

            <thead>

              <tr>

                <th>学生</th>

                <th>学号</th>

              </tr>

            </thead>

            <tbody>

              <tr>

                <td>胡思</td>

                <td>2016010101</td>

              </tr>

              <tr>

                <td>赵四</td>

                <td>2016010102</td>

              </tr>

              <tr>

                <td>陈诚</td>

                <td>2016010103</td>

              </tr>

              <tr>

                <td>李磊</td>

                <td>2016010104</td>

              </tr>

              <tr>

                <td>孙杨</td>

                <td>2016010105</td>

              </tr>

              <tr>

                <td>李爽</td>

                <td>2016010106</td>

              </tr>

            </tbody>

          </table>

          <table class="table table-striped table-bordered">

            <caption>学生表</caption>

            <thead>

              <tr>

                <th>学生</th>

                <th>学号</th>

              </tr>

            </thead>

            <tbody>

              <tr>

                <td>胡思</td>

                <td>2016010101</td>

              </tr>

              <tr>

                <td>赵四</td>

                <td>2016010102</td>

              </tr>

              <tr>

                <td>陈诚</td>

                <td>2016010103</td>

              </tr>

              <tr>

                <td>李磊</td>

                <td>2016010104</td>

              </tr>

              <tr>

                <td>游豪</td>

                <td>2016010105</td>

              </tr>

            </tbody>

          </table>

        </p>

        <p class="col-xs-10">

          <table class="table table-striped">

            <tr style="text-align: center;">

              <td>到校</td>

              <td>回家</td>

              <td>距离</td>

            </tr>

            <tr style="text-align: center;">

              <td colspan="2" style="text-align: center;">222</td>

              <td rowspan="2" style="width: 200px;">

                <p class="col-xs-12">

                  <table class="table table-striped table-bordered">

                    <thead>

                      <tr>

                        <th>姓名</th>

                        <th>学号</th>

                      </tr>

                    </thead>

                    <tbody>

                      <tr>

                        <td>胡思</td>

                        <td>2016010101</td>

                      </tr>

                    </tbody>

                  </table>

                </p>

              </td>

            </tr>

            <tr>

              <td colspan="2" style="text-align: center;">333</td>

            </tr>

          </table>

          <table class="table table-striped">

            <tr style="text-align: center;">

              <td>到校</td>

              <td>回家</td>

              <td>距离</td>

            </tr>

            <tr style="text-align: center;">

              <td colspan="2" style="text-align: center;">222</td>

              <td rowspan="2" style="width: 200px;">

                <p class="col-xs-12">

                  <table class="table table-striped table-bordered">

                    <thead>

                      <tr>

                        <th>姓名</th>

                        <th>学号</th>

                      </tr>

                    </thead>

                    <tbody>

                      <tr>

                        <td>胡思</td>

                        <td>2016010101</td>

                      </tr>

                    </tbody>

                  </table>

                </p>

              </td>

            </tr>

            <tr>

              <td colspan="2" style="text-align: center;">333</td>

            </tr>

          </table>

          <table class="table table-striped">

            <tr style="text-align: center;">

              <td>到校</td>

              <td>回家</td>

              <td>距离</td>

            </tr>

            <tr style="text-align: center;">

              <td colspan="2" style="text-align: center;">222</td>

              <td rowspan="2" style="width: 200px;">

                <p class="col-xs-12">

                  <table class="table table-striped table-bordered">

                    <thead>

                      <tr>

                        <th>姓名</th>

                        <th>学号</th>

                      </tr>

                    </thead>

                    <tbody>

                      <tr>

                        <td>胡思</td>

                        <td>2016010101</td>

                      </tr>

                    </tbody>

                  </table>

                </p>

              </td>

            </tr>

            <tr>

              <td colspan="2" style="text-align: center;">333</td>

            </tr>

          </table>

          <table class="table table-striped">

            <tr style="text-align: center;">

              <td>到校</td>

              <td>回家</td>

              <td>距离</td>

            </tr>

            <tr style="text-align: center;">

              <td colspan="2" style="text-align: center;">222</td>

              <td rowspan="2" style="width: 200px;">

                <p class="col-xs-12">

                  <table class="table table-striped table-bordered">

                    <thead>

                      <tr>

                        <th>姓名</th>

                        <th>学号</th>

                      </tr>

                    </thead>

                    <tbody>

                      <tr>

                        <td>胡思</td>

                        <td>2016010101</td>

                      </tr>

                    </tbody>

                  </table>

                </p>

              </td>

            </tr>

            <tr>

              <td colspan="2" style="text-align: center;">333</td>

            </tr>

          </table>

        </p>

      </p>

    </p>

  </body>

</html>

Copier après la connexion

3. >

Je pense que vous maîtrisez la méthode après avoir lu le cas dans cet article. Pour des informations plus intéressantes, veuillez prêter attention aux autres articles connexes sur le site Web chinois de php !

Lecture recommandée :

Comment résoudre l'échec de l'installation de npm

Le type d'énumération Vue implémente HTML

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal