ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
## SweetAlert SweetAlert 是一个漂亮的弹窗插件。 请查看 [英文文档](https://sweetalert.js.org/) 或 [中文文档](https://sweetalert.bootcss.com/) 了解详细。 ### 基本使用 ![](https://box.kancloud.cn/49fea779003672b84c7316641e503468_974x624.png) ``` <script> require(['hdjs'], function (hdjs) { hdjs.swal ( "Oops" , "Something went wrong!" , "error" ); }) </script> ``` ### 自定义 ![](https://box.kancloud.cn/5d57539f3efa4be71ba22b45f5fe2154_970x420.png) ``` <script> require(['hdjs'], function (hdjs) { hdjs.swal({ text: "保存成功", button:false, icon:'warning' }); }) </script> ```