JavaScript dir方法返回文本方向的空字符串
作者:互联网
当我尝试确定默认文本方向时,这将返回一个空字符串…
alert(document.getElementById('example').dir);
我想确定默认文本方向是ltr还是rtl.
解决方法:
ltr / rtl是使用css“direction”属性定义的.它也可以使用DOM中元素的“dir”属性来定义.
如果要检查属性值,请使用getAttribute方法:
document.getElementById('example').getAttribute('dir');
另外,检查元素的样式.它默认为ltr,因此如果未定义,则应返回为空字符串.否则应该说“rtl”
document.getElementById('example').style.direction;
https://developer.mozilla.org/en/CSS/direction
标签:javascript,text,bidirectional 来源: https://codeday.me/bug/20190530/1182944.html