阿拉伯文文本框

发布于 2024-09-28 23:41:43 字数 248 浏览 0 评论 0原文

我开发了一个网站:有些字段用英语输入,而另一些字段则用阿拉伯语输入。

现在我想简化用户的输入操作,并希望阿拉伯语文本框作为 DLL。

我有一个,但它只适用于 IE - 不适用于 Firefox 或 google chrome ..

非常感谢 ..

如何强制用户用阿拉伯语书写?我的意思是每次尝试更改语言时都直接移动光标而无需(ALT + SHIFT)键...如果有任何方法、属性、DLL 或其他方法可以做到这一点...

I have developed a web site: Some fields are entered in English while others are entered in Arabic language.

Now i wanna simplify the input operation for the user and want Arabic textbox as a DLL.

I have one but it works only with IE - not with firefox or google chrome ..

thanks so much..

How to enforce the user to write in Arabic? I mean moving the cursor directly without (ALT + SHIFT) keys every time when trying to change the language... If there is any way, property , DLL or what ever to do that...

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

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

发布评论

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

评论(2

油焖大侠 2024-10-05 23:41:43

您可以使用这个在 Firefox 和 IE 上运行良好的 成熟的 javascript 库,只需添加一个属性,如 lang='fa' 或 lang ='en' 到您的文本框,您就完成了,当然您可以根据您的用途对其进行定制。

它是波斯语的,你可以用谷歌翻译它来阅读该页面。

我已经在客户端代码中完成了添加属性,就像这样

 <script type="text/javascript">
                $().ready(function () {
                    $("input,textarea").each(function () {
                        $(this).attr("lang", "fa");
                    });
                });
  </script>

You could use this mature javascript library that works fine on firefox and IE, just add an attribute like lang='fa' or lang ='en' to your textbox and you're done, sure you can tailor it for your usage.

it's in persian and you can translate it with google to read the page.

I've done the adding attribute in client code and it's like this

 <script type="text/javascript">
                $().ready(function () {
                    $("input,textarea").each(function () {
                        $(this).attr("lang", "fa");
                    });
                });
  </script>
胡大本事 2024-10-05 23:41:43

为什么不使用标准文本框的方向和对齐属性,而是使用替代属性?

Why you don't use direction and alignment properties of standard text box instead of an alternative one?

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