简介
一个符合XHTML标准的文件即可称为有效. 此可以确保XHTML文件代码的协调, 亦能令文件的更容易被处理, 而不需确保各种浏览器编译的一致性。而W3C验证服务则可以验证文件是否有效。而实际上, 很多网站开发工具(例如Dreamweaver)都支援以W3C标准验证文件。
语法
XHTML语言必须符合XML的格式,例如
Attribute names must be in lower case
属性名称必须为小写
This is wrong:
这是错误的:
<table WIDTH="100%">
This is correct:
这是正确的:
<table width="100%">
Attribute values must be quoted
属性值使用双引号
This is wrong:
这是错误的:
<table width=100%>
This is correct:
这是正确的:
<table width="100%">
Attribute minimization is forbidden
属性简写是不允许的
This is wrong:
这是错误的:
<input checked> <input readonly> <input disabled> <option selected> <frame noresize>
This is correct:
正确的是这样:
<input checked="checked" /> <input readonly="readonly" /> <input disabled="disabled" /> <option selected="selected" /> <frame noresize="noresize" />
The id attribute replaces the name attribute
用id属性来替代name属性
This is wrong:
这是错误的:
<img src="picture.gif" name="picture1" />
This is correct:
这是正确的:
<img src="picture.gif" id="picture1" />
注意:为了版本比较低的浏览器,你应该同时使用name和id属性,并使它们两个的值相同的,像这样:
<img src="picture.gif" id="picture1" name="picture1" />