0

我想在 html 文件中将文本框的语言更改为马拉地语我的代码如下,但它不起作用

<html lang="mr" xml:lang="en">
<head></head>
<body>
<textarea style="height:200px;width:200px;font-family:Mangal">
</textarea>
</body>
</html>
4

4 回答 4

1

我希望你的意思是字体而不是语言......

首先,给出textareaanid和 a class,例如

<textarea id="txtArea" class="textarea" style="height:200px;width:200px;font-family:Mangal">
</textarea>

然后让我们摆脱那种糟糕的内联样式编码,并有一个外部样式表或在<head>这个内部:

<style>
    .textarea { height:200px; width:200px; font-family:Mangal }
</style>

所以现在它会很干净

<textarea id="txtArea" class="textarea">
</textarea>

要更改字体,只需执行以下操作:

来自 javascript

txtArea.style.fontFamily = "Arial";

从样式表

.textarea { height:200px; width:200px; font-family:'Arial' }

或者,如果您不能使用内联样式,请添加id并调用 javascript。

我不记得是否font-family:'Arial' !important从内联样式获得优先级,但您也可以尝试。

于 2013-07-10T12:29:32.680 回答
1

无法使用 html 标签属性、css 样式或 Javascript 来完成

于 2013-07-10T12:30:15.717 回答
1

Perhaps you could use the Google Input Tools

Install it with Marathi pack and you could start typing in Marathi

http://www.google.co.in/inputtools/

A draw back is that it should be installed on all the systems the application uses.If it's an intranet app then it would be fine.

于 2013-07-10T12:37:24.917 回答
1

html 中没有允许您输入马拉地语的标签。您可以下载特定的工具

http://www.google.co.in/inputtools/

http://t13n.googlecode.com/svn/trunk/blet/docs/help_mr.html

但它不会特定于某些 div 或标签,它将应用于每个应用程序。

于 2013-07-10T13:24:29.580 回答