0
如何使用JQuery和Sencha Touch。例如,我有一個sencha按鈕,點擊時沒有任何反應。我檢查JQuery的工作。如何將JQuery與Sencha touch結合使用
xtype: 'button',
text: 'Get result',
docked: 'bottom',
id: 'myBtn',
,並有JQuery的
$(document).ready(function() {
//alert('true');
$("#myBtn").click(function() {
alert('true');
console.log('info');
});
});
這是可能的嗎?