在 HTML 文档中, lang 属性用于设置或返回元素的 lang 属性值。此属性指定元素内容的语言代码。元素属性采用“en”表示英语,“ja”表示日语,“es”表示西班牙语等等。此属性的默认值未知。
句法:
获取 lang 的值:
HTMLElementObject.lang;
为 lang 设置新值:
HTMLElementObject.lang = language_code;
属性值: language_code指定元素内容的语言代码。此属性返回一个表示元素文本语言的字符串。
返回值:一个字符串,表示元素文本的语言
Example-1:分配语言代码的值。
HTML
HTML | DOM lang Property
Click the button to display
the language code of paragraph.
html
HTML | DOM lang Property
Click the button to display
the language code of paragraph.
输出:
点击按钮前:
单击“显示语言”按钮后:
解释:
上面的示例获取第一段的语言代码并将该语言分配给第二段。
示例 2:检查语言代码的值。
html
HTML | DOM lang Property
Click the button to display
the language code of paragraph.
输出:
点击按钮前
单击“显示语言”按钮后
支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐
- 歌剧
- 苹果浏览器