HTML DOM dir ÊôÐÔ
¶¨ÒåºÍÓ÷¨
dir ÊôÐÔÉèÖûò·µ»ØÔªËصÄÎÄ×Ö·½Ïò¡£
Óï·¨£º
object.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>