帮我写一个HTML打车代码
时间: 2023-08-28 11:11:43 浏览: 94
好的,以下是一个简单的HTML打车代码:
```
<!DOCTYPE html>
<html>
<head>
<title>打车</title>
</head>
<body>
<h1>打车服务</h1>
<form action="submit.php" method="post">
<label for="start">起点:</label>
<input type="text" id="start" name="start"><br><br>
<label for="destination">目的地:</label>
<input type="text" id="destination" name="destination"><br><br>
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br><br>
<label for="phone">电话:</label>
<input type="tel" id="phone" name="phone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" placeholder="格式:xxx-xxx-xxxx"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
在这个代码中,我们使用了一个简单的表单,包含了以下几个字段:
- 起点(输入框)
- 目的地(输入框)
- 姓名(输入框)
- 电话(输入框,需要满足特定的格式)
- 提交按钮
当用户填写完表单并点击提交按钮后,表单数据会被提交到服务器上的submit.php文件进行处理。你需要根据自己的需求修改submit.php文件的内容,来实现打车服务的具体功能。
阅读全文