¿Cómo obtener lang
atributos en HTML usando JavaScript?
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
javascript
html
Yuan gordiano
fuente
fuente
xml:lang
ellang
atributo o el atributo?lang
atributo, pero no he hecho nada para verificar esto ...xml:lang
Ref: Dev mozillaSólo.
document.getElementsByTagName('html')[0].getAttribute('lang');
Y con el espacio de nombres
document.getElementsByTagName('html')[0].getAttribute('xml:lang');
fuente