bootstrap得表格怎么可以做填写表格
时间: 2024-09-28 22:08:21 浏览: 21
使用Bootstrap + Vue.js实现表格的动态展示、新增和删除功能
Bootstrap 的表格(`<table>`)本身主要用于展示数据,如果你想让它支持用户填写数据,通常会将其与表单元素相结合,比如`<input>`、`<textarea>`等。这里有一个基础的例子,展示了如何在一个Bootstrap表格中包含表单输入项:
```html
<table class="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<!-- 这里每个<tr>代表一行数据,<td>用于显示字段 -->
<tr>
<td><input type="number" class="form-control" placeholder="ID" name="id[]"></td>
<td><input type="text" class="form-control" placeholder="Name" name="name[]"></td>
<td><input type="email" class="form-control" placeholder="Email" name="email[]"></td>
<td><input type="tel" class="form-control" placeholder="Phone" name="phone[]"></td>
<td><button type="button" class="btn btn-secondary">Save</button></td>
</tr>
<!-- 可以复制上述行并替换数据,以便增加更多行 -->
</tbody>
</table>
```
在这个例子中,每一列都有一个表单输入元素,用户可以直接编辑内容。当点击“Save”按钮时,你需要编写JavaScript或其他服务器端语言来处理提交的数据。
阅读全文