Skip to content
On this page

YX.Confirm确认消息

提示用户确认其已经触发的动作,并询问是否进行此操作时会用到此对话框。

js
YX.Confirm('此操作将永久删除该文件, 是否继续?', '提示', {
    confirmButtonText: '确定',
    cancelButtonText: '取消',
    type: 'warning'
  }).then(() => {
    YX.Alert.info('内容', '标题', 'success')
  }).catch(() => {
    YX.Alert.info('内容', '标题', 'error')       
  });

Released under the MIT License.