阿拉伯文文本框
我开发了一个网站:有些字段用英语输入,而另一些字段则用阿拉伯语输入。
现在我想简化用户的输入操作,并希望阿拉伯语文本框作为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用这个在 Firefox 和 IE 上运行良好的 成熟的 javascript 库,只需添加一个属性,如 lang='fa' 或 lang ='en' 到您的文本框,您就完成了,当然您可以根据您的用途对其进行定制。
它是波斯语的,你可以用谷歌翻译它来阅读该页面。
我已经在客户端代码中完成了添加属性,就像这样
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
为什么不使用标准文本框的方向和对齐属性,而是使用替代属性?
Why you don't use direction and alignment properties of standard text box instead of an alternative one?