如何阻止 Javascript 改变我的文本输入方向?
我正在执行以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
unicode-bidi
和direction
来设置文本样式:输出:
http://jsfiddle.net/HX4mB/
以下是更多信息的链接:http://www.w3.org/TR/CSS2/visuren.html#direction
Use
unicode-bidi
anddirection
to style the text:The output:
http://jsfiddle.net/HX4mB/
Here's a link for more information: http://www.w3.org/TR/CSS2/visuren.html#direction