How to change the style of alert box?

后端 未结 13 1974
一生所求
一生所求 2020-11-22 01:49

I need to change the style of the \"OK\" Button in an alert box.

13条回答
  •  误落风尘
    2020-11-22 02:35

    I use sweetalert2 library. It's really simple, a lot of customization, modern, animated windows, eye-catching, and also nice design.

    Swal.fire({
      icon: 'error',
      title: 'Oops...',
      text: 'Something went wrong!',
      footer: 'Why do I have this issue?'
    })
    

    Check this link

提交回复
热议问题