Google Chrome ブラウザでこの JavaScript をテストしていますが、次のエラーが表示されます: Uncaught SyntaxError: Unexpected Identifier.
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.tab.Panel",{
fullscreen: true,
tabBarPosition: 'bottom',
var image = Ext.widget('image',{
xtype: "image",
src: "images.jpg",
scope: this
});
this.add([image]);
});
}
});