Ext.onReady(function() {
new Ext.Viewport({
items : [{
xtype : 'box', // 或者xtype: 'component',
width : 200, // 图片宽度
height : 200, // 图片高度
autoEl : {
id:'myId',
tag : 'img', // 指定为img标签
src : 'images/1.jpg' // 指定url路径
}
}]
});//testalert(document.getElementById("myId").geetAttribute('src'));
document.getElementById("myId").setAttribute('src',"images/2.jpg");
});