//<a class='btn btn-mini btn-danger' title="删除" οnclick="delGridBuilding('${bo.id }');"><i class='icon-trash'></i></a>
function delGridBuilding(poid) {
		swal(
					title : "Are you sure?",
					text : "确定要删除吗?",
					type : "warning",
					showCancelButton : true,
					confirmButtonColor : '#DD6B55',
					confirmButtonText : 'Yes',
					cancelButtonText : "No",
					closeOnConfirm : false
				function(isConfirm) {
					if (isConfirm) {
						$.ajax({
									url : '',
									type : 'post',
									data : 'id=' + poid,
									dataType : 'json',
									async : false,
									success : function(d) {
										if (d) {
											swal({
												title : "YES",
												text : "操作成功!",
												type : "success",
											}, function() {
												window.location.reload();
										} else {
											swal("No", "删除失败,请稍后再试!", "error");
									error : function(d) {
										swal("No", d, "error");
ミ(ノ゜д゜
//&amp;lt;a class='btn btn-mini btn-danger' title=&quot;删除&quot; onclick=&quot;delGridBuilding('${bo.id }');&quot;&amp;gt;&amp;lt;i class='icon-trash'&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/a&amp;gt; function delGridBuilding(poid) { swal( {... <link rel="stylesheet" href="__PUBLIC__/css/sweetalert.css"> <!-- 弹出 --> <script type="text/javascript" src="__PUBLIC__/wxparent/js/sweetalert-dev.js"></script> <script type="text/javascript"> swal({ title: "", text: res.info, type: "" },function(){ window.location = "__URL__/index"; </script> <link rel="stylesheet" href="__PUBLIC__/css/sweetalert.css"> <!-- 弹出 --> <script type="text/javascript" src="__PUBLIC__/wxparent/js/sweetalert-dev.js"></script> <script type="text/javascript"> swal({ title: "", text: res.info, type: "" },function(){ window.location = "__URL__/index"; </script> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" /> <title>测试页面</title>
SweetAlert可以替代JavaScript原生的alert和confirm等函数呈现的弹出提示,它将提示进行了美化,并且允许自定义,支持设置提示标题、提示类型、内容展示图片、确认取消按钮文本、点击后回调函数等。 要使用该插件,首先要在html的header中引入以下文件:   title: "确认删除?",   text: "Your will not be able to recover this imaginary file!",   type: "warning",   showCancelButton: true,   confirmButtonColor: "#DD6B55",   confirmButtonText: "确认", 2. confirm:用于确认用户是否执行某个操作,有“确定”和“取消”两个按钮。 用法:if (confirm('是否执行这个操作?')) {执行操作} else {取消操作}; 3. prompt:用于输入一些信息或者修改信息,弹出一个带有输入的对话,有“确定”和“取消”两个按钮。 用法:var name = prompt('请输入您的名字:'); 用输入的name变量进行下一步操作。 4. sweetAlert:这是一个第三方库,可以弹出漂亮的警告,有多种样式和配置,可以自定义按钮的文本、颜色和事件等。 用法:swal({title: "标题",text: "正文", icon: "warning", buttons: {cancel: "取消", confirm: "确定",},}).then((result) => {if (result) {执行操作} else {取消操作};}); 注意:不同操作方法的用法也不尽相同,需要根据具体情况选择合适的方法和参数。