多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 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> ```