[学习笔记] Html 基础补充
2019-12-05 本文已影响0人
玛丽莲做梦
-
html框架
框架结构标签 - <frameset>
- 框架结构标签定义如何将窗口分割为框架
- 每个 frameset 定义了一系列行或列
- rows/columns 的值规定了每行或每列占据屏幕的面积
举个例子:
<frameset cols="25%, 75%">
<frame src="frame_a.html">
<frame src="frame_b.html">
</frameset>
-
html内联框架
iframe 用于在网页内显示网页
添加 iframe 的语法
<iframe src="URL" whidth="200" height="200" frameborder="0"></iframe>
src 为内联页面的位置,width 和 height 用来规定 iframe 的高度和宽度,属性值的默认单位是 px,但也可以使用百分比来设定。frameborder 属性规定是否显示 iframe 周围的边框,设置属性值为 “0” 就可以移除边框。
-
html脚本
<noscript> 标签
<noscript> 标签提供无法使用脚本时的替代内容,比如在浏览器禁用脚本时,或者在浏览器不支持客户端脚本时。
<noscript> 元素可包含普通 html 页面的 body 元素中能够找到的所有元素。
只有在浏览器不支持脚本或者禁用脚本时,才会显示 noscript 元素中的内容。
-
html表单
<fieldset> 组合表单数据
<fieldset> 元素组合表单中的相关数据
<legend> 元素为 <fieldset> 元素定义标题
html Form 属性
下面是 <form> 的属性:
accept-charset - 规定在被提交表单中使用的字符集(默认:页面字符集)
action - 规定向何处提交表单的地址(URL)(即提交页面)
autocomplete - 规定浏览器应该自动完成表单(默认:开启)
enctype - 规定被提交数据的编码(默认:url-encoded)
method - 规定在提交表单时所用的 HTTP 方法(默认:GET)
name - 规定识别表单的名称(对于 DOM 使用:document.forms.name)
novalidate - 规定浏览器不验证表单
target - 规定 action 属性中地址的目标(默认:_self)