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