X

修改符合無障礙網頁設計

無障礙網頁設計的標準是 AAA > AA > A+ > A, 之前做的已經符合 AA, 但是到 AAA 的等級還要做兩個小修改.

  1. Link 間不能用空白隔開, 一定要有分隔的符號
  2. Table 要有 summary 的值, 代表此 Table 的涵義

因此, 對程式和 Template 做了一點小修改.

關於 Link 間不能用空白隔開, 一定要有分隔的符號

主要只有左下角的圖示要這種分隔符號, 所以都加上 | 做分隔.

關於 Table 要有 summary 的值, 代表此 Table 的涵義

這個就比較麻煩一點, 考慮想要回報給 pLog Term, 但是, 英文程度不好, 寫的意思可能比較差, 之後問人看看再回報好了..

對以下程式做了小修改.

class/data/htmlcalendar.class.php

第269行: <table class="calMonth"

改成 : <table class="calMonth" summary="this is the month list of current month">

(加上 summary="this ...")

第340行: <table class="calYear">

改成 : <table class="calYear" summary="display the current year">

(加上 summary="display ...")

就可以了, 再來就是送送 AAA 檢測看看能否通過囉~~

Tsung: 對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.
Related Post