字元索引直接對應到 Unicode 字元,有三種方式
- 字元名稱
- 十進位數字
- 十六進位數字
三種方式都必須以 & 開頭,最後以分號 ; 結尾。第一種字元名稱例如
&name;
name 為字元索引的英文名稱,常用的例如 & 符號為 amp , < 符號為 lt , > 符號為 gt 等。
第二種十進位數字為該字元 Unicode 的十進位值,例如
{
這表示 Unicode 中的 { 。
第三種十六進位數字為該字元 Unicode 的十六進位值,例如
ģ
這表示 Unicode 中的 ģ 。
我們用以下例子示範
<!DOCTYPE html> <html> <head> <title>HTML 5 DEMO</title> <style> article { display: block; } </style> </head> <body> <section> <article> ÷ </article> <article> ÷ </article> <article> ÷ </article> </section> </body> </html> <!-- 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:chtest.html 功能:示範 HTML 5 標記語言 作者:張凱慶 時間:西元 2011 年 12 月 -->
瀏覽器 (broswer) 開啟如下
此為除號的三種字元索引。
中英文術語對照 | |
---|---|
字元索引 | character reference |
元素 | element |
您可以繼續參考
基本概念
相關目錄
HTML 5 快速導覽
HTML, CSS 教材
首頁
參考資料
http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#character-references
http://www.w3.org/TR/html5/syntax.html#character-references
沒有留言:
張貼留言