欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用XHTML1.0 Strict中需要特别注意的地方

程序员文章站 2024-02-16 13:50:28
永远使用小写字母,让引号伴随者属性: 所有元素和属性的名字都必须使用小写,所有属性值必须使用双引号。  错误: 
永远使用小写字母,让引号伴随者属性: 所有元素和属性的名字都必须使用小写,所有属性值必须使用双引号。 

错误: <a href="index.html" class=internal> 
正确: <a href="index.html" class="internal"> 

关闭所有的元素:在html中一些元素没有必要被关闭。当下一个元素开始的时候,上一个元素就自动被关闭。xhtml中是不允许这样的。所有元素都必须被关闭,即使其中没有内容(如 <img>) 

错误: <li>item 1 
正确: <li>item 1</li>  

错误: <p>lorem ipsum dolor sit amet, consectetuer adipiscing elit. 
正确: <p>lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>  

错误: <br> 
正确: <br />  

错误: <img src="image.jpg" alt=""> 
正确: <img src="image.jpg" alt="" />  

属性不能被缩减: 在html里,一些属性可以被缩减。而xhtml则不允许这样做。 

错误: <input type="checkbox" id="checkbox1" name="checkbox1" checked> 
正确: <input type="checkbox" id="checkbox1" name="checkbox1" checked="checked" /> 

不要使用被排斥的元素: 一些元素和属性在html 4.01 transitional和xhtml 1.0 transitional是被允许的,而在xhtml 1.0 strict下则不被支持(还有in html 4.01 strict)。比如<font>、<center>、 alink、align、width、 height (对于某些元素)和 background。 

不允许span元素缺少以下其中一个开始标签"p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre", "address", "fieldset", "ins", "del"  

表单(表单元素必须存在容器内): 
<form>  错误
<input /> 
</form> 

<form> 正确
<div>
<input /> 
</div>
</form>