日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
HTML5深入淺出教學(xué)篇之五

介紹

HTML 5: 元素的通用屬性

元素的通用屬性 - accesskey, style, class, title, tabindex, id, dir, spellcheck, hidden, contenteditable, contextmenu, draggable, dropzone

示例

1、accesskey - 用于定義快捷鍵element/_globalAttributes/accesskey.html

 
 
 
  1.  
  2.  
  3.  
  4.     accesskey 
  5.  
  6.  
  7.      
  8.     webabcd blog 
  9.     webabcd blog 
  10.  
  11.  

2、style - 用于定義樣式element/_globalAttributes/style.html

 
 
 
  1.  
  2.  
  3.  
  4.     style 
  5.  
  6.  
  7.      
  8.     webabcd 
  9.  
  10.  

3、class - 指定需要應(yīng)用的 css 類選擇器element/_globalAttributes/class.html

 
 
 
  1.  
  2.  
  3.  
  4.     class 
  5.      
  6.  
  7.  
  8.      
  9.     webabcd 
  10.  
  11.  

4、title - 用于描述元素信息,相當(dāng)于 ToolTipelement/_globalAttributes/title.html

 
 
 
  1.  
  2.  
  3.  
  4.     title 
  5.  
  6.  
  7.      
  8.     webabcd blog 
  9.      
  10.  
  11.  

#p#

5、tabindex - 用于定義 TAB 鍵的導(dǎo)航順序(整型值)element/_globalAttributes/tabindex.html

 
 
 
  1.  
  2.  
  3.  
  4.     tabindex 
  5.  
  6.  
  7.      
  8.        
  9.      
  10.      
  11.      
  12.      
  13.      
  14.      
  15.  
  16.  

6、id - 用于定義元素的唯一標(biāo)識,主要給 DOM 用element/_globalAttributes/id.html

 
 
 
  1.  
  2.  
  3.  
  4.     id 
  5.  
  6.  
  7.      
  8.     webabcd blog 
  9.  
  10.      
  11.  
  12.  

7、dir - 文本排列方向,可能的值有:auto|ltr|rtl(dir 是 direction 的縮寫)element/_globalAttributes/dir.html

 
 
 
  1.  
  2.  
  3.  
  4.     dir 
  5.  
  6.  
  7.      
  8.     123 
  9.  
  10.  

8、spellcheck - 是否使用瀏覽器的拼寫檢查功能對元素內(nèi)的內(nèi)容做拼寫檢查element/_globalAttributes/spellcheck.html

 
 
 
  1.  
  2.  
  3.  
  4.     spellcheck 
  5.  
  6.  
  7.      
  8.      
  9. i am jack, i am webabcd, haha, good, hehe  
  10.      
  11.  
  12.  

#p#

9、hidden - 用于隱藏元素(不占位)element/_globalAttributes/hidden.html

 
 
 
  1.  
  2.  
  3.  
  4.     hidden 
  5.  
  6.  
  7.      
  8.          
  9.      
  10.      
  11.  
  12.  

10、contenteditable - 用于定義內(nèi)容是否可編輯element/_globalAttributes/contenteditable.html

 
 
 
  1.  
  2.  
  3.  
  4.     contenteditable 
  5.  
  6.  
  7.      
  8.     我是可以編輯的,試試看

     
  9.  
  10.  

11、contextmenu - 指定上下文菜單的數(shù)據(jù)源element/_globalAttributes/contextmenu.html

 
 
 
  1.  
  2.  
  3.  
  4.     contextmenu 
  5.  
  6.  
  7.      
  8.      
  9.          
  10.          
  11.              
  12.              
  13.              
  14.                  
  15.                  
  16.              
  17.          
  18.      
  19.      
  20.      
  21.          
  22.             
  23.  
  24.                  
  25.                      
  26.                         New... 
  27.                      
  28.                         Open... 
  29.                      
  30.                         Save 
  31.                      
  32.                         Save as... 
  33.                  
  34.             
  35.  
  36.             
  37.  
  38.                  
  39.                      
  40.                         Copy 
  41.                      
  42.                         Cut 
  43.                      
  44.                         Paste 
  45.                  
  46.             
  47.  
  48.             
  49.  
  50.                  
  51.                     
  52. Help
  53.  
  54.                     
  55. About
  56.  
  57.                  
  58.             
  59.  
  60.          
  61.      
  62.  
  63.  

12、draggable - 元素是否可拖拽;dropzone - 拖放的目標(biāo)元素(可承載被拖拽元素的元素)element/_globalAttributes/draggable_dropzone.html

 
 
 
  1.  
  2.  
  3.  
  4.     draggable dropzone 
  5.  
  6.  
  7.     關(guān)于 draggable 和 dropzone 的詳細(xì)說明,參見 /other/drag_drop 
  8.  
  9.  

[源碼下載]

原文鏈接:http://www.cnblogs.com/webabcd/archive/2012/02/02/2335318.html


名稱欄目:HTML5深入淺出教學(xué)篇之五
文章位置:http://www.5511xx.com/article/dhssdjg.html