任何身体都可以告诉你如何在icha的sencha touch中实现焦点和模糊方法
我试过这种方式
Ext.getComponent('txtName').focus();
由于
答案 0 :(得分:0)
如果您的文本字段如下所示:
{
xtype: 'textfield',
itemId: 'txtName' // Best practice is to use itemId instead of id
}
您可以使用ComponentQuery选择它:
var txtName = Ext.ComponentQuery.query('#txtName')[0];
txtName.focus();