<form>表单提交实验,编写HTML静态页面book.html,提供书籍信息表单,包含的信息有书名、作者、出版商、出版地、出版日期、单价、ISBN
时间: 2024-09-19 07:10:16 浏览: 63
HTML的form表单标签用法学习教程
5星 · 资源好评率100%
在HTML中,创建一个用于收集书籍信息的表单可以使用`<form>`标签。下面是一个简单的静态HTML页面book.html的例子,它包含了一个书籍信息输入表单:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>书籍信息表单</title>
</head>
<body>
<h1>书籍信息录入</h1>
<form action="#" method="post"> <!-- 表单默认提交到当前页面,使用method="post"发送POST请求,更安全 -->
<label for="bookTitle">书名:</label><br>
<input type="text" id="bookTitle" name="bookTitle"><br>
<label for="author">作者:</label><br>
<input type="text" id="author" name="author"><br>
<label for="publisher">出版社:</label><br>
<input type="text" id="publisher" name="publisher"><br>
<label for="place">出版地:</label><br>
<input type="text" id="place" name="place"><br>
<label for="pubDate">出版日期:</label><br>
<input type="date" id="pubDate" name="pubDate"><br>
<label for="price">单价:</label><br>
<input type="number" id="price" name="price" step="0.01"><br>
<label for="isbn">ISBN:</label><br>
<input type="text" id="isbn" name="isbn"><br>
<input type="submit" value="提交"> <!-- 提交按钮 -->
</form>
</body>
</html>
```
在这个例子中,用户填写完书籍信息后点击“提交”按钮,表单数据会被发送到服务器处理。如果需要实际提交到服务器,你需要设置`action`属性指向服务器的处理地址,并考虑使用JavaScript进行前端验证。
阅读全文