HTML5之summary标签
<summary> 标签为 <details> 元素定义一个可见的标题。 当用户点击标题时会显示出详细信息。
summary标签是HTML5新出的一个标签,它是配合<details> 元素使用的,<summary> 元素应该是 <details> 元素的第一个子元素。
使用方法如下:
<details>
<summary>Copyright 1999-2011.</summary>
<p> - by Refsnes Data. All Rights Reserved.</p>
<p>All content and graphics on this web site are the property of the company Refsnes Data.</p>
</details>