我在我的项目中使用 google音译。我尝试了Google Transliterate API Developer's Guide上提供的代码段。但是,可用的文档较少,我对此的想法很少。
代码的工作方式是只有在按空格键时才能将单词转换为目标语言。按退格键后会给出建议。我需要以一种方式工作,以便在您输入字符并同时提供建议时将其转换为单词。
以下是我在网站上尝试的代码段:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Google Transliterate API
google.load("elements", "1", {
packages: "transliteration"
});
function onLoad() {
var options = {
sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH,
destinationLanguage:[google.elements.transliteration.LanguageCode.HINDI],
shortcutKey: 'ctrl+g',
transliterationEnabled: true
};
// Create an instance on TransliterationControl with the required
// options.
var control = new google.elements.transliteration.TransliterationControl(options);
// Enable transliteration in the textbox with id
// 'transliterateTextarea'.
control.makeTransliteratable(['transliterateTextarea']);
}
google.setOnLoadCallback(onLoad);
</script>
</head>
<body>
Type in Hindi (Press Ctrl+g to toggle between English and Hindi)<br>
<textarea id="transliterateTextarea" style="width:600px;height:200px"></textarea>
</body>
</html>
答案 0 :(得分:1)
我认为谷歌不允许改变这一点。它只是控制你的文本区域并执行它自己的脚本,我们没有太多的控制权。