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