<videocontrols> <sourcesrc="foo.webm"type="video/webm"> <sourcesrc="foo.ogg"type="video/ogg"> <sourcesrc="foo.mov"type="video/quicktime"> I'm sorry; your browser doesn't support HTML5 video. </video>
details 元素(Detail)
使用下摘要和详情定义一个下拉块。与 summary 元素配合使用。 重要属性:
open: 布尔属性,确定初始状态
<detailsopen> <summary>Read more</summary> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec viverra nec nulla vitae mollis.</p> </details>
sub 元素(Subscripted text)
sub 标记定义下标。
The formula of carbon dioxide is CO<sub>2</sub>.
sup 元素(Superscripted text)
sup 标记定义上标。
The "power of two" is 2<sup>n</sup> where n is an integer.
var 元素(Variable)
var 标记定义数学或程序中的变量。
The value of <var>x</var> is 12.
button 元素(Button)
定义可点击的按钮。 重要属性:
name: 定义表单内唯一标识符
value: 当提交时,发送给服务器的值
disabled: 布尔属性,是否禁用
type: 有四个值可选择:
submit: 提交表单
reset: 刷新表单
button: default
menu: 菜单
<button>submit</button>
datalist 元素(Data list)
当时有 input 元素时,定义了一组可自动补全的可选项。与 option 元素配合使用。 input 元素的 list 属性要与 datalist 的 id 属性相同。
<label>South American countries</label><br> <inputlist="countries"placeholder="Type a country">