0

How use JQuery and Sencha Touch. For example I have a sencha button, on click nothing happens. JQuery work I check.

xtype: 'button',
text: 'Get result',
docked: 'bottom',
id: 'myBtn',

and have JQuery

$(document).ready(function() {  
//alert('true');
    $("#myBtn").click(function() {
        alert('true');
        console.log('info');
    });
});

It's possible?

4

1 回答 1

0

您不应该将这两个框架混合在一起,它们不能很好地相互配合。我相信 sencha 使用 id 属性进行自己的内部查询。因此,使用 jQuery 自己获取元素是不可能的。但是,如果您想真正使用上面的代码,请尝试以下 $(Ext.query('#myBtn')[0]).whatever_you_want_to_chain

于 2013-10-07T19:15:00.043 回答