用bootstrap 5框架写一个图书管理系统
时间: 2024-04-07 18:33:27 浏览: 176
当然可以!以下是使用Bootstrap 5框架编写的一个简单的图书管理系统的HTML代码示例:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>图书管理系统</title>
<!-- 引入Bootstrap CSS文件 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="text-center mt-5">图书管理系统</h1>
<!-- 添加图书表单 -->
<h2 class="mt-5">添加图书</h2>
<form>
<div class="mb-3">
<label for="bookTitle" class="form-label">书名</label>
<input type="text" class="form-control" id="bookTitle" placeholder="请输入书名">
</div>
<div class="mb-3">
<label for="bookAuthor" class="form-label">作者</label>
<input type="text" class="form-control" id="bookAuthor" placeholder="请输入作者">
</div>
<button type="submit" class="btn btn-primary">添加</button>
</form>
<!-- 图书列表 -->
<h2 class="mt-5">图书列表</h2>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">书名</th>
<th scope="col">作者</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>书名1</td>
<td>作者1</td>
</tr>
<tr>
<th scope="row">2</th>
<td>书名2</td>
<td>作者2</td>
</tr>
<tr>
<th scope="row">3</th>
<td>书名3</td>
<td>作者3</td>
</tr>
</tbody>
</table>
</div>
<!-- 引入Bootstrap JavaScript文件 -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.min.js"></script>
</body>
</html>
```
这个示例包含了一个添加图书的表单和一个图书列表。你可以根据自己的需求进行修改和扩展。
请注意,这只是一个基本的示例,还需要编写后端代码来实现实际的图书管理功能。此外,你可能需要在项目中引入其他依赖库或自定义样式来完善图书管理系统。
阅读全文