运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <p><bdo id="myBdo" dir="rtl">This paragraph will go right-to-left.</bdo></p> <p>Click the button to get the text direction of the text inside the bdo element.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myBdo").dir; document.getElementById("demo").innerHTML = x; } </script> </body> </html>