我们做数据统计的时候,都需要用到表格,table就是用来定义一个表格的,我们来设置一个表格:
<html>
<head>
<title>网站名称</title>
</head>
<body>
<table border="1">
<caption>我是表格标题</caption>
<thead>
<th>姓名</th>
<th>性别</th>
<th>联系地址</th>
</thead>
<tfoot>
<tr>
<td colspan="3">我是一个底部</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>小李</td>
<td>男</td>
<td>哈哈哈</td>
</tr>
<tr>
<td>小韩</td>
<td>女</td>
<td>美美</td>
</tr>
<tr>
<td>小张</td>
<td>男</td>
<td>哦哦哦</td>
</tr>
</tbody>
</table>
</body>
</html>
注:表格相关的元素很多,我们这里整理一下:
caption:用来设置表格标题;
thead:表示表格的头部区域;
th:表示表格的头部中的一个列;
tbody:表示表格的中间主要显示区域;
tr:表示表格的一个行;
td:表示表格的和个列;
tfoot:设置表格的脚部;
colspan:表示横跨几列;
表单:form
表单也是我们开发中经常用到的一个元素,我们登录时都是使用表单来向后台发送请求的,我们创建一个登录界面:
<html>
<head>
<title>网站名称</title>
</head>
<body>
<form action="/demo.php" method="get">
<div>
<input type="text" name="username"/>
</div>
<div>
<input type="password" name="password"/>
</div>
<button type="submit">登录</button>
</form>
</body>
</html>
注:form表单的元素介绍如下:
input:表示一个输入框,type属性用来表示此输入框的功能,text时表示输入的可见文件;password表示输入的是不可见到的密码;name属性用来设置后台语言用来获取此输入框的内容;
button:表示一个按钮,type:submit表示点击时会自动提交;提交到哪里呢?又是以什么方式提交呢?
我们看下form中的两个属性:
action:用来定义提交到的地址;
method:表示提交到后台语言时的提交方式,get或post,其他的还有put,delete
同一个页面多个表单提交地址卸载action即可
示例:
node.js服务器代码:
const app = require("express")()const server = require("http").Server(app)
server.listen(80)
app.get('/test1',function (req,res) {
let name = req.query.name
res.send(name+"您访问了test1")
})
app.get('/test2',function (req,res) {
let name = req.query.name
res.send(name+"您访问了test2")
})
网页代码:
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>表单1访问test1</h1>
<form method="get" action="http://localhost/test1">
<input type="text" placeholder="用户名" name="name">
<input type="submit" value="提交">
</form>
<h1>表单2访问test2</h1>
<form method="get" action="http://localhost/test2">
<input type="text" placeholder="用户名" name="name">
<input type="submit" value="提交">
</form>
</body>
</html>
效果:
点击第一个表单的提交
点击点二个表单的提交
代码仅供参考。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)