我正在使用 w2ui。我有一个带有一个按钮的工具栏。此按钮具有图标图像“图标删除”。
当我单击按钮时,我希望它将图标图像更改为“图标添加”,但我的代码不起作用。
toolbar: {
items: [{
type: 'button',
id: 'hide',
caption: 'Menü',
img: 'icon-delete'
}],
onClick: function (target, data) {
if (target == 'hide') {
this.items.img('icon-add');
}
}
}