我有一个英语的网站。我已经使用了Google Translate将其转换为阿拉伯语。因此,我可以选择英语或阿拉伯语的网站2个选项。现在,我遇到的问题是,每当我在文本框中输入数据时,我都希望它在阿拉伯语中动态翻译,并使用ajax或jquery在文本框中显示它。
这是一些想法,如果您想要
$('#txtId').focusOut(function() {
//Call the Google API
$.ajax({
type : "GET",
url : "https://ajax.googleapis.com/ajax/services/language/translate",
dataType : 'jsonp',
cache: false,
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
data : "v=1.0&q="+ $('#txtId').val()+"&langpair=en|es",
success : function(iData){
//update the value
$('#txtId').val(iData["responseData"]["translatedText"]);
},
error:function (xhr, ajaxOptions, thrownError){ }
});
});
这只是一个想法,根据您的要求进行更改。