html <details> 標簽設置了用戶可見的或者隱藏的需求的補充細節 <details> 標簽用來供用戶開啟關閉的交互式控件,任何形式的內容都能被放在 <details> 標簽里邊 <details> 元素的內容對用戶是不可見的,除非設置了 open 屬性 與 <summary> 標簽配合使用可以為 details 定義標題,標題是可見的,用戶點擊標題時,會顯示出 details 瀏覽器支持目前,只有 Chrome 和 Safari 6 支持 <details> 標簽 屬性
范例使用 <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> |