在三星电视中初始化 IME 对象时,出现以下错误:
TypeError: 'undefined' is not a function (evaluating 'widgetAPI.registIMEKey()')
已widgetAPI
正确初始化且可访问。
任何形式的帮助表示赞赏。
我试过的代码:
var textBoxController = {
createInputbox: function (elId){
var Elmement = $("#"+elId);
var imeReady = function(imeObject)
{
alert("----------R E A D Y-----------");
var ready = true;
if (ready)
{
$("#"+elId).focus();
}
};
var ime = new IMEShell(elId, imeReady, 'en');
widgetAPI.registIMEKey();
},
test:function(){
this.createInputbox("txtName");
}
}