我想为特定的Ext警告框添加特定样式(不是所有警报框的常用样式)。
那么,如何将类或Id添加到Ext.Msg.alert框?
Ext.Msg.alert('Status', 'Changes saved successfully.');
答案 0 :(得分:4)
我建议改为使用Ext.Msg.show
代替Ext.Msg.alert
。以下代码示例显示了alert type
(仅在按钮上的白色)消息,该消息允许为样式设置类名。
由于您没有提供特定代码,这只是一个基本示例:
Ext.Msg.show({
title: 'Alert',
msg: 'Your message here',
buttons: Ext.MessageBox.OK,
cls: 'your css class here'
});