巧妙地使用文本对齐(如果英语 dir=ltr 如果阿拉伯语 dir=rtl)

use text-align smartly (if english dir=ltr if arabic dir=rtl)(巧妙地使用文本对齐(如果英语 dir=ltr 如果阿拉伯语 dir=rtl))
本文介绍了巧妙地使用文本对齐(如果英语 dir=ltr 如果阿拉伯语 dir=rtl)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个社区网站,我希望用户写

I have a community web site and I want that users write

  • 带有方向 LTR/text-align: left) 的英文帖子和
  • 带有方向 RTL/text-align: right 的阿拉伯语帖子.

例如Google+ 和 twitter 提供了这样的 POST 解决方案.

E.g. Google+ and twitter provides such an POST solution.

当我从 rtl 或 ltr 中的数据库 post load 读取它时,我想自动添加方向属性到 post !但我不知道怎么做?!

I want add automatically direction attribute to post when i read it from data base post load in rtl or ltr ! but i don't know how ?!

推荐答案

您需要创建一个函数,其中包含您知道的所有字母 RTL 并在加载时检查.要显示 RTL,您需要 CSS 属性、directiontext-alignunicode-bidi.

You'll need to create a function that has all the letters you know are RTL and check when loading. To display RTL you need the CSS attributes, direction, text-align, and unicode-bidi.

演示:

function checkRtl( character ) {
    var RTL = ['ا','ب','پ','ت','س','ج','چ','ح','خ','د','ذ','ر','ز','ژ','س','ش','ص','ض','ط','ظ','ع','غ','ف','ق','ک','گ','ل','م','ن','و','ه','ی'];
    return RTL.indexOf( character ) > -1;
};

var divs = document.getElementsByTagName( 'div' );

for ( var index = 0; index < divs.length; index++ ) {
    if( checkRtl( divs[index].textContent[0] ) ) {
        divs[index].className = 'rtl';
    } else {
        divs[index].className = 'ltr';
    };
};

CSS

.rtl {
    direction: rtl; 
    text-align: right;
    unicode-bidi: bidi-override;
}

.ltr {
    direction: ltr; 
    text-align: left;
    unicode-bidi: bidi-override;
}

HTML

<div>hello</div>
<div>ظ</div>

这篇关于巧妙地使用文本对齐(如果英语 dir=ltr 如果阿拉伯语 dir=rtl)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)