页面结构分析
元素名 | 描述 |
---|
header | 标记头部区域的内容(用于页面或页面中的一块区域) |
footer | 标记脚部区域的内容(用于整个页面或页面中的一块区域) |
section | Web页面中的一块独立区域 |
article | 独立的文章内容 |
aside | 相关内容或应用(常用于侧边栏) |
nav | 导航辅助内容 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>页面结构分析</title>
</head>
<body>
<header>
<h2>网页头部</h2>
</header>
<section>
<h2>网页主体</h2>
</section>
<footer>
<h2>网页脚部</h2>
</footer>
</body>
</html>
iframe内联框架
<iframe scr = "path" name = "mainFrame"></iframe>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>内联框架</title>
</head>
<body>
<!--iframe内联框架
src:地址
w-h:宽度高度
-->
<iframe src="" name="hello" frameborder="0" width="100px" height="100px"></iframe>
<a href="8页面标签.html" target="hello">点击跳转</a>
</body>
</html>
表单
表单元素属性:
属性 | 说明 |
---|
type | 指定元素的类型。text、password、checkbox、radio、reset、file、hidden、image和button,默认为text |
name | 指定表单元素的名称 |
value | 元素的初始值,type为radio时必须指定一个值 |
size | 指定表单元素的初始宽度,当type为text或password时,表单元素的大小以字符为单位,对于其他类型,宽度以像素为单位 |
maxlength | type为text或password时,输入的最大字符数 |
checked | type为radio或CheckBox时,指定按钮是否被选中 |
表单初级验证
常用方式:
- placeholder 提示信息
- required 非空判断
- pattern 正则判断
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<h1>注册</h1>
<!--表单 form
action:表单提交的地址,可以是网站,也可以是一个请求处理地址
method: post , get 提交方式
get方式提交,可以在URL中看到我们提交的信息,不安全,但高效
post方式提交,比较安全,传输大文件
-->
<form action="8页面标签.html" method="get">
<!--文本输入框: input
password输入时保密
value="zxy" 默认初始值
maxlength="8" 最长能写几个字符
size="30" 文本框的长度
-->
<p>名字:<input type="text" name="username" placeholder="请输入用户名" required/></p>
<p>密码:<input type="password" name="password" required/></p>
<!--单选框标签
radio
value:单选框的值
name:表示组 同一个才能实现单选 否则等于多选框
-->
<p>性别:
<input type="radio" value="boy" name="sex"/>男
<input type="radio" value="girl" name="sex" checked/>女
</p>
<!--多选框 checkbox-->
<p>爱好:
<input type="checkbox" value="sleep" name="hobby">睡觉
<input type="checkbox" value="code" name="hobby" checked>敲代码
<input type="checkbox" value="chat" name="chat">聊天
<input type="checkbox" value="game" name="hobby" disabled>打游戏
</p>
<!--普通按钮:button
图像按钮:image
提交按钮:submit
重置按钮:reset
-->
<p>按钮:
<input type="button" name="btn1" value="点击">
</p>
<!--下拉框 列表框-->
<p>国家:
<select name="列表名称">
<option value="选项的值" selected>中国</option>
<option value="选项的值">美国</option>
<option value="选项的值">瑞士</option>
</select>
</p>
<!--文本域-->
<p>反馈:
<textarea name="textarea" cols="30" rows="10">文本内容</textarea>
</p>
<!--文件域-->
<p>
<input type="file" name="files">
<input type="button" value="上传" name="upload">
</p>
<!--邮件验证-->
<p>邮箱:
<input type="email" name="email">
</p>
<!--URL-->
<p>URL:
<input type="url" name="url">
</p>
<!--数字-->
<p>商品数量:
<input type="number" name="num" max="100" min="0" step="10">
</p>
<!--滑块-->
<p>滑块:
<input type="range" name="voice" min="0" max="100" step="2">
</p>
<!--搜索框-->
<p>搜索:
<input type="search" name="search">
</p>
<!--增强鼠标可用性-->
<p>
<label for="mark">点一下</label>
<input type="text" id="mark">
</p>
<p>
<input type="submit"/>
<input type="reset" value="清空"/>
</p>
</form>
</body>
</html>