兵兵有你

人品好,气质差.丢了工作就回家...

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

示例:安装sweetalert插件

1.yarn add sweetalert

 

2.resources/js/bootstrap.js中引入:

require('sweetalert');

  

$(document).ready(function() {
  // 删除按钮点击事件
  $('.btn-del-address').click(function() {
    // 获取按钮上 data-id 属性的值,也就是地址 ID
    var id = $(this).data('id');
    // 调用 sweetalert
    swal({
        title: "确认要删除该地址?",
        icon: "warning",
        buttons: ['取消', '确定'],
        dangerMode: true,
      })
    .then(function(willDelete) { // 用户点击按钮后会触发这个回调函数
      // 用户点击确定 willDelete 值为 true, 否则为 false
      // 用户点了取消,啥也不做
      if (!willDelete) {
        return;
      }
      // 调用删除接口,用 id 来拼接出请求的 url
      axios.delete('/user_addresses/' + id)
        .then(function () {
          // 请求成功之后重新加载页面
          location.reload();
        })
    });
  });
});

  

 

posted on 2019-08-15 13:27  greatbing  阅读(1129)  评论(0编辑  收藏  举报