HTML DOM dir ÊôÐÔ

¶¨ÒåºÍÓ÷¨

dir ÊôÐÔ¿ÉÉèÖûò·µ»ØÔªËصÄÎı¾·½Ïò¡£

Óï·¨

bodyObject.dir=text-direction

ʵÀý

ÏÂÃæµÄÀý×Ó¿ÉչʾÁ½ÖÖÉèÖà <body> ÔªËØµÄÎı¾·½ÏòµÄ·½·¨£º

<html>
<body id="myid" dir="rtl">

<script type="text/javascript">
x=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>

Êä³ö£º

Text direction: rtl
An alternate way: rtl 
VUE