如何在按钮上显示阿拉伯数字?

发布于 2024-11-16 03:09:36 字数 74 浏览 1 评论 0原文

我尝试在 bottun 小部件上显示阿拉伯数字,我在阿拉伯语模式下输入文本值,但它在 bottun 上显示英语模式!我该怎么做? 谢谢

I try to show arabic digits on bottun widget , i type text valu in arabic mode but it`s show english mode on bottun ! how can i do this ?
thanks

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

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

发布评论

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

评论(1

苍暮颜 2024-11-23 03:09:36

最简单的方法是通过 CSS 使用阿拉伯字符的 .gif、.png 或 .jpg 设置图片背景,例如:

<input type="button" class="arabicChar" />

然后在样式表中:

.arabicChar {
    background: url(images/arabic-char.png);
}

另一个选项要求您使用如下图表:
http://theorem.ca/~mvcorks /cgi-bin/unicode.pl.cgi?start=0600&end=06FF

但是您必须使用 Font 设置按钮的字体(通过 CSS)包含那些阿拉伯字符...

Easiest way is to set the background of your picture with the .gif, .png or .jpg of your arabic character via CSS like:

<input type="button" class="arabicChar" />

Then in your stylesheet:

.arabicChar {
    background: url(images/arabic-char.png);
}

The other option requires you using a chart like:
http://theorem.ca/~mvcorks/cgi-bin/unicode.pl.cgi?start=0600&end=06FF

But then you must set the Font of the Button (via CSS) with a Font that contains those Arabic characters...

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