ArtDialog是一個彈窗插件,可以通過設置參數來實現模態與非模態彈窗。
modal: true
。art.dialog({
title: 'Modal Dialog',
content: 'This is a modal dialog',
modal: true
});
art.dialog({
title: 'Non-Modal Dialog',
content: 'This is a non-modal dialog'
});
通過設置參數modal: true
可以實現模態彈窗,不設置該參數則為非模態彈窗。根據需求選擇合適的彈窗類型。