当前位置: 首页 > 工具软件 > Fire > 使用案例 >

Swal.fire使用

宰父浩漫
2023-12-01
Swal.fire({
	title: "是否删除",
	text: "是否删除?一旦提交,无法恢复!",
	icon: "warning",
	showCancelButton: true,
	confirmButtonColor: "#DD6B55",
	confirmButtonText: "确定",
	cancelButtonText: "取消"
}).then((isConfirm) =>{
	if (isConfirm.value) {
		Swal.fire("删除成功", "成功", "success");
	}else{
		Swal.fire("取消操作", "点击了取消", "error");
	}
});
 类似资料: