当前位置: 首页 > 工具软件 > noty > 使用案例 >

noty

景信瑞
2023-12-01
//弹出确认框
noty({
   text: '你要继续吗?' ,
   buttons: [
     {addClass: 'btn btn-primary' , text: '确定' , onClick: function ($noty) {
         // this = button element 也就是当前的按钮
         // $noty = $noty element 也就是当前这个提示信息对象
         $noty.close();
         noty({text: '你点击了确定按钮' , type: 'success' });
       }
     },
     {addClass: 'btn btn-danger' , text: '取消' , onClick: function ($noty) {
         $noty.close();
         noty({text: '你点击了取消按钮' , type: 'error' });
       }
     }
   ]
});

//弹出提示框
  noty({ text: '添加成功', type: 'success',timeout:1000 });
 类似资料:

相关阅读

相关文章

相关问答