XHTML 1.0 的 xml:lang 属性是什么意思?

发布于 2024-12-02 12:32:05 字数 492 浏览 0 评论 0原文

这是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晒暮凉 2024-12-09 12:32:05

xml:lang 属性很简单与 XML 本身相对应的 lang 属性(xml 是其命名空间)。由于 XHTML 派生自 XML,因此 XHTML 文档中的元素必须具有 xml:lang 属性以及 HTML lang 属性。您通常只需在 开始标记上声明 xml:lang ,其中的其他所有内容都会相应地“继承”语言值。

如果您需要指定不同的语言,请确保为两个属性指定相同的值。

XHTML 1.0 规范中对此进行了说明:

指定元素的语言时,请同时使用 langxml:lang 属性。 xml:lang 属性的值优先。

The xml:lang attribute is simply the lang attribute that corresponds to XML itself (xml being its namespace). Since XHTML derives from XML, elements in an XHTML document must have the xml:lang attribute, along with the HTML lang attribute. You usually just declare xml: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:

Use both the lang and xml:lang attributes when specifying the language of an element. The value of the xml:lang attribute takes precedence.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文