Ext怎么实现图片外联结
var theMainForm1 = new Ext.form.FormPanel
({
autoScroll : true,
id:'theMainForm1',
defaultType: 'textfield',
border: false,
frame:true,
items:
[
{
xtype: 'box',
//或者xtype: 'component',
padding: 10,
autoEl: {
tag: 'img', //指定为img标签
src: '/images/wangshangfuwu.jpg',//指定url路径
}
},
{
xtype: 'box', //或者xtype: 'component',
padding: 10,
autoEl: {
tag: 'img', //指定为img标签
src: '/images/dianzishangwu.jpg' //指定url路径
}
},
{
xtype: 'box', //或者xtype: 'component',
padding: 10,
autoEl: {
tag: 'img', //指定为img标签
src: '/images/xichengweibo.jpg' //指定url路径
}
},
{
xtype: 'box', //或者xtype: 'component',
padding: 10,
autoEl: {
tag: 'img', //指定为img标签
src: '/images/fangwudengji.jpg' //指定url路径
}
},
]
});