如何阻止 Javascript 改变我的文本输入方向?

发布于 2024-12-05 10:45:04 字数 316 浏览 1 评论 0原文

我正在执行以下 JavaScript 代码:

document.write('ל');
document.write(' 0 1 2');

其中第一个输入是来自从右到左的语言(例如希伯来语或阿拉伯语)的文本,输出如下:

0 1 2

后续写入从右到左写入,直到收到一些本质上从左到右的输入(例如拉丁字符)。

输出仍然显示为左对齐,并且在第二次写入之前将 css 方向属性设置为 ltr 并不能解决问题。

有什么想法问题出在哪里吗?

I'm executing the following JavaScript code:

document.write('ל');
document.write(' 0 1 2');

where the first input is text from a right-to-left language (eg Hebrew or Arabic), and the output is as follows:

ל 0 1 2

with subsequent writes being written right-to-left, until some input is received which is inherently left-to-right (e.g. Latin characters).

The output still appears left-aligned, and setting the css direction attribute to ltr before the second write doesn't fix the problem.

Any ideas where the problem lies?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乱世争霸 2024-12-12 10:45:04

使用 unicode-bididirection 来设置文本样式:

<div style="direction:rtl;">ל<span style="direction:ltr;unicode-bidi:bidi-override;">0 1 2</span></div>

输出:

http://jsfiddle.net/HX4mB/

以下是更多信息的链接:http://www.w3.org/TR/CSS2/visuren.html#direction

Use unicode-bidi and direction to style the text:

<div style="direction:rtl;">ל<span style="direction:ltr;unicode-bidi:bidi-override;">0 1 2</span></div>

The output:

http://jsfiddle.net/HX4mB/

Here's a link for more information: http://www.w3.org/TR/CSS2/visuren.html#direction

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文