我编写了一个代码,使用Google Transliterate API将文本框内容音译为Gujarati
。它在PC浏览器中运行良好,它也适用于移动浏览器UC浏览器。我面临的问题是,当我在移动Chrome浏览器中运行相同的代码时,它无效。
<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: 'en',
destinationLanguage: ['gu'],
transliterationEnabled: true
};
if (google.elements.transliteration.isBrowserCompatible()) {
alert('compatible');
var control = new google.elements.transliteration.TransliterationControl(options);
var ids = ["idTitle", "idContent"];
control.makeTransliteratable(ids);
} else {
alert('not compatible');
}
}
google.setOnLoadCallback(onLoad);
</script>
<form action="index.php" method="post">
<label for="blogtitle">Title</label>
<input type="text" id="idTitle" name="txtTitle" value="" required>
<label for="content">Content</label>
<textarea id="idContent" name="txtContent" required> </textarea>
<input name="btnAdd" type="submit" value="Add">
</form>
答案 0 :(得分:0)
对于浏览器不兼容的用户,不同的应用程序有时需要不同的行为。 Transliterate API提供了一个全局方法 google.elements.transliteration.isBrowserCompatible()来检查兼容性,但在检测到不兼容的浏览器时它没有任何自动行为。出于可用性目的,您应检测不兼容的浏览器,如果检测到,则显示错误消息。