用html写一个图书添加
时间: 2023-09-27 15:05:38 浏览: 106
好的,以下是一个简单的HTML代码,可以用来添加图书:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>图书添加</title>
</head>
<body>
<h1>图书添加</h1>
<form action="add_book.php" method="POST">
<label for="name">书名:</label>
<input type="text" id="name" name="name"><br><br>
<label for="author">作者:</label>
<input type="text" id="author" name="author"><br><br>
<label for="publisher">出版社:</label>
<input type="text" id="publisher" name="publisher"><br><br>
<label for="isbn">ISBN:</label>
<input type="text" id="isbn" name="isbn"><br><br>
<input type="submit" value="添加图书">
</form>
</body>
</html>
```
这段代码包含一个表单,可以让用户输入书名、作者、出版社和ISBN等信息,然后将这些信息提交到`add_book.php`页面进行处理。注意,这里只是一个示例代码,实际的添加图书功能需要在后台进行实现。
阅读全文