# Sweet alert 元件介紹-1: https://sweetalert.js.org/guides/ 元件介紹-2: http://mishengqiang.com/sweetalert/ ###### tags: `元件分享` cdn連結: ``` <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script> ``` ## 範例 ### 成功 ``` swal("Good job!", "You clicked the button!", "success"); ``` ### 錯誤 ``` swal("錯誤!", "You clicked the button!", "error"); ``` ### 提示(驚嘆號) ``` swal("提示!", "You clicked the button!", "info"); ``` ### 警告(驚嘆號) ``` swal("提示!", "You clicked the button!", "warning"); ```