XHTML 1.0 的 xml:lang 属性是什么意思?
这是XHTML 1.0 Transitinal DTD:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
</body>
</html>
在xml名称空间属性之后,我可以将xml:lang和lang更改为其他值,例如其他语言吗?它是如何工作的?谢谢大家!
Here is XHTML 1.0 Transitinal DTD:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
</body>
</html>
following the xml namespace attribute,can I change the xml:lang and lang to another value,such as other language?how it works?Thanks guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xml:lang
属性很简单与 XML 本身相对应的lang
属性(xml
是其命名空间)。由于 XHTML 派生自 XML,因此 XHTML 文档中的元素必须具有xml:lang
属性以及 HTMLlang
属性。您通常只需在开始标记上声明
xml:lang
,其中的其他所有内容都会相应地“继承”语言值。如果您需要指定不同的语言,请确保为两个属性指定相同的值。
XHTML 1.0 规范中对此进行了说明:
The
xml:lang
attribute is simply thelang
attribute that corresponds to XML itself (xml
being its namespace). Since XHTML derives from XML, elements in an XHTML document must have thexml:lang
attribute, along with the HTMLlang
attribute. You usually just declarexml:lang
on the<html>
opening tag and everything else inside will "inherit" the language value appropriately.If you need to specify a different language, make sure to specify the same value for both attributes.
This is stated in the XHTML 1.0 spec: