HTML DOM dir 屬性
定義和用法
dir 屬性設置或返回元素的文字方向。
語法
HTMLElementObject.dir=text-direction
瀏覽器支持
所有主要瀏覽器都支持 dir 屬性
實例
實例
返回 body 元素的文本方向:
<html>
<body id="myid" dir="rtl">
<script>
varx=document.getElementsByTagName('body')[0];
document.write("Text direction: " + x.dir);
document.write("<br>");
document.write("An alternate way: ");
document.write(document.getElementById('myid').dir);
</script>
</body>
</html>
<body id="myid" dir="rtl">
<script>
varx=document.getElementsByTagName('body')[0];
document.write("Text direction: " + x.dir);
document.write("<br>");
document.write("An alternate way: ");
document.write(document.getElementById('myid').dir);
</script>
</body>
</html>
嘗試一下 ?
更多建議: