发新话题
打印

html标签<table>中的abbr、summary两个属性的意思

html标签<table>中的abbr、summary两个属性的意思

1.关于<abbr></abbr>属性.   
   他的作用是对一些缩写进行完整性解释.这个属性对”拼写错误检查,语法检查,搜索引擎,翻译系统”比较有用.   
   e.g      title就是对中间内容的完整解释   
   <ABBR    title="World    Wide    Web">WWW</ABBR>   
   <ABBR    title="Abbreviation">abbr.</ABBR>   
   2.关于<table>标记中的abbr属性.   
   用于<th>或者是<td>时,主要是对cell内容的缩略形式.   
   e.g   
   <TABLE    border="1"   
   summary="This    table    charts    the    number    of    cups   
   of    coffee    consumed    by    each    senator,    the    type   
   of    coffee    (decaf    or    regular),    and    whether   
   taken    with    sugar.">   
   <CAPTION>Cups    of    coffee    consumed    by    each    senator</CAPTION>   
   <TR>   
   <TH    id="t1">Name</TH>   
   <TH    id="t2">Cups</TH>   
   <TH    id="t3"    abbr="Type">Type    of    Coffee</TH>   
   <TH    id="t4">Sugar?</TH>   
   <TR>   
   <TD    headers="t1">T.    Sexton</TD>   
   <TD    headers="t2">10</TD>   
   <TD    headers="t3">Espresso</TD>   
   <TD    headers="t4">No</TD>   
   </TABLE>   
   3.summary就是对这个table的作用以及结构进行解释说明.

TOP

发新话题