首页 > 代码库 > HTML与XHTML区别比较
HTML与XHTML区别比较
5、XHTML要求所有属性的值必须使用引号(单引号和双引号都可以)括起来,如class=“gallery”,不能写成class=gallery。
而在HTML中,属性值可以没有引号
6、XHTML中必须要有<html><head><body>元素,html中可以没有。
7、XHTML可以使用类似<p/>来直接表示元素没有内容,html则不能。
8、XHTML中所有的属性必须写成:属性=“属性值”的形式,而html中允许某些boolean类型的属性只写属性名,不需要写属性值。
如html中表示选中的input元素可以这样写:<input type="checkbox" name="chkNewsletter" checked>;
而在xhtml中必须写成:<input type="checkbox" name="chkNewsletter" checked="checked">.
9、在XHTML中,设置元素内容的语言要用xml:lang属性,在html中用lang属性。
10、在XHTML中,需要在HTTP头部设置正确的MIME类型:"application/xhtml+xml" (this is the best option), "application/xml" (acceptable), or "text/xml" (which isn’t recommended)。
11、XHTML中,text encoding should be set within the XML declaration, not in the HTTP headers (although doing the latter is still allowed).
元素的属性之间的空格不管多少,只要至少有一个就行。
12、XHTML在处理script和stylesheet也有很大差异:document.write() and document.writeln() do not work in XHTML
HTML与XHTML区别比较