其他分享
首页 > 其他分享> > Vue 模态框 取消/提交后清除数据

Vue 模态框 取消/提交后清除数据

作者:互联网

 基础知识

下表列出了模态框中要用到事件。这些事件可在函数中当钩子使用

事件描述实例
show.bs.modal 在调用 show 方法后触发。
$('#identifier').on('show.bs.modal', function () {
  // 执行一些动作...
})
shown.bs.modal 当模态框对用户可见时触发(将等待 CSS 过渡效果完成)。
$('#identifier').on('shown.bs.modal', function () {
  // 执行一些动作...
})
hide.bs.modal 当调用 hide 实例方法时触发。
$('#identifier').on('hide.bs.modal', function () {
  // 执行一些动作...
})
hidden.bs.modal 当模态框完全对用户隐藏时触发。
$('#identifier').on('hidden.bs.modal', function () {
  // 执行一些动作...
})

标签:模态,function,Vue,...,清除,modal,bs,identifier
来源: https://www.cnblogs.com/polax/p/15126503.html