(轉自Bootstrap:彈出框和提示框效果以及代碼展現)javascript
前言:對於Web開發人員,彈出框和提示框的使用確定不會陌生,好比常見的表格新增和編輯功能,通常常見的主要有兩種處理方式:行內編輯和彈出框編輯。在增長用戶體驗方面,彈出框和提示框起着重要的做用,若是你的系統有一個友好的彈出提示框,天然能給用戶很好的頁面體驗。前面幾章介紹了bootstrap的幾個經常使用組件,這章來看看bootstrap裏面彈出框和提示框的處理。總的來講,彈出提示主要分爲三種:彈出框、肯定取消提示框、信息提示框。本篇就結合這三種類型分別來介紹下它們的使用。css
使用過JQuery UI的園友們應該知道,它裏面有一個dialog的彈出框組件,功能也很豐富。與jQuery UI的dialog相似,Bootstrap裏面也內置了彈出框組件。打開bootstrap 文檔http://v3.bootcss.com/components/能夠看到它的dialog是直接嵌入到bootstrap.js和bootstrap.css裏面的,也就是說,只要咱們引入了bootstrap的文件,就能夠直接使用它的dialog組件,是否是很方便。本篇咱們就結合新增編輯的功能來介紹下bootstrap dialog的使用。廢話很少說,直接看來它如何使用吧。html
1 <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> 2 <div class="modal-dialog" role="document"> 3 <div class="modal-content"> 4 <div class="modal-header"> 5 <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> 6 <h4 class="modal-title" id="myModalLabel">新增</h4> 7 </div> 8 <div class="modal-body"> 9 10 <div class="form-group"> 11 <label for="txt_departmentname">部門名稱</label> 12 <input type="text" name="txt_departmentname" class="form-control" id="txt_departmentname" placeholder="部門名稱"> 13 </div> 14 <div class="form-group"> 15 <label for="txt_parentdepartment">上級部門</label> 16 <input type="text" name="txt_parentdepartment" class="form-control" id="txt_parentdepartment" placeholder="上級部門"> 17 </div> 18 <div class="form-group"> 19 <label for="txt_departmentlevel">部門級別</label> 20 <input type="text" name="txt_departmentlevel" class="form-control" id="txt_departmentlevel" placeholder="部門級別"> 21 </div> 22 <div class="form-group"> 23 <label for="txt_statu">描述</label> 24 <input type="text" name="txt_statu" class="form-control" id="txt_statu" placeholder="狀態"> 25 </div> 26 </div> 27 <div class="modal-footer"> 28 <button type="button" class="btn btn-default" data-dismiss="modal"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span>關閉</button> 29 <button type="button" id="btn_submit" class="btn btn-primary" data-dismiss="modal"><span class="glyphicon glyphicon-floppy-disk" aria-hidden="true"></span>保存</button> 30 </div> 31 </div> 32 </div> 33 </div>
最外面的div定義了dialog的隱藏。咱們重點來看看第二層的divjava
1 <div class="modal-dialog" role="document">
這個div定義了dialog,對應的class有三種尺寸的彈出框,以下:node
1 <div class="modal-dialog" role="document">
1 <div class="modal-dialog modal-lg" role="document">
1 <div class="modal-dialog modal-full" role="document">
第一種表示默認類型的彈出框;第二種表示增大的彈出框;第三種表示滿屏的彈出框。role="document"表示彈出框的對象的當前的document。git
默認狀況下,咱們的彈出框是隱藏的,只有在用戶點擊某個操做的時候纔會show出來。來看看js裏面是如何處理的吧:github
1 //註冊新增按鈕的事件 2 $("#btn_add").click(function () { 3 $("#myModalLabel").text("新增"); 4 $('#myModal').modal(); 5 });
對,你沒有看錯,只須要這一句就能show出這個dialog。ajax
$('#myModal').modal();
新增效果bootstrap
編輯效果api
彈出框顯示後,點擊界面上其餘地方以及按Esc鍵都能隱藏彈出框,這樣使得用戶的操做更加友好。關於dialog裏面關閉和保存按鈕的事件的初始化在項目裏面通常是封裝過的,這個咱們待會來看。
這種類型的提示框通常用於某些須要用戶肯定才能進行的操做,比較常見的如:刪除操做、提交訂單操做等。
介紹這個組件以前,就得說說組件封裝了,咱們知道,像彈出框、確認取消提示框、信息提示框這些東西項目裏面確定是多處都要調用的,因此咱們確定是要封裝組件的。下面就來看看咱們封裝的缺少取消提示框。
1 (function ($) { 2 3 window.Ewin = function () { 4 var html = '<div id="[Id]" class="modal fade" role="dialog" aria-labelledby="modalLabel">' + 5 '<div class="modal-dialog modal-sm">' + 6 '<div class="modal-content">' + 7 '<div class="modal-header">' + 8 '<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>' + 9 '<h4 class="modal-title" id="modalLabel">[Title]</h4>' + 10 '</div>' + 11 '<div class="modal-body">' + 12 '<p>[Message]</p>' + 13 '</div>' + 14 '<div class="modal-footer">' + 15 '<button type="button" class="btn btn-default cancel" data-dismiss="modal">[BtnCancel]</button>' + 16 '<button type="button" class="btn btn-primary ok" data-dismiss="modal">[BtnOk]</button>' + 17 '</div>' + 18 '</div>' + 19 '</div>' + 20 '</div>'; 21 22 23 var dialogdHtml = '<div id="[Id]" class="modal fade" role="dialog" aria-labelledby="modalLabel">' + 24 '<div class="modal-dialog">' + 25 '<div class="modal-content">' + 26 '<div class="modal-header">' + 27 '<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>' + 28 '<h4 class="modal-title" id="modalLabel">[Title]</h4>' + 29 '</div>' + 30 '<div class="modal-body">' + 31 '</div>' + 32 '</div>' + 33 '</div>' + 34 '</div>'; 35 var reg = new RegExp("\\[([^\\[\\]]*?)\\]", 'igm'); 36 var generateId = function () { 37 var date = new Date(); 38 return 'mdl' + date.valueOf(); 39 } 40 var init = function (options) { 41 options = $.extend({}, { 42 title: "操做提示", 43 message: "提示內容", 44 btnok: "肯定", 45 btncl: "取消", 46 width: 200, 47 auto: false 48 }, options || {}); 49 var modalId = generateId(); 50 var content = html.replace(reg, function (node, key) { 51 return { 52 Id: modalId, 53 Title: options.title, 54 Message: options.message, 55 BtnOk: options.btnok, 56 BtnCancel: options.btncl 57 }[key]; 58 }); 59 $('body').append(content); 60 $('#' + modalId).modal({ 61 width: options.width, 62 backdrop: 'static' 63 }); 64 $('#' + modalId).on('hide.bs.modal', function (e) { 65 $('body').find('#' + modalId).remove(); 66 }); 67 return modalId; 68 } 69 70 return { 71 alert: function (options) { 72 if (typeof options == 'string') { 73 options = { 74 message: options 75 }; 76 } 77 var id = init(options); 78 var modal = $('#' + id); 79 modal.find('.ok').removeClass('btn-success').addClass('btn-primary'); 80 modal.find('.cancel').hide(); 81 82 return { 83 id: id, 84 on: function (callback) { 85 if (callback && callback instanceof Function) { 86 modal.find('.ok').click(function () { callback(true); }); 87 } 88 }, 89 hide: function (callback) { 90 if (callback && callback instanceof Function) { 91 modal.on('hide.bs.modal', function (e) { 92 callback(e); 93 }); 94 } 95 } 96 }; 97 }, 98 confirm: function (options) { 99 var id = init(options); 100 var modal = $('#' + id); 101 modal.find('.ok').removeClass('btn-primary').addClass('btn-success'); 102 modal.find('.cancel').show(); 103 return { 104 id: id, 105 on: function (callback) { 106 if (callback && callback instanceof Function) { 107 modal.find('.ok').click(function () { callback(true); }); 108 modal.find('.cancel').click(function () { callback(false); }); 109 } 110 }, 111 hide: function (callback) { 112 if (callback && callback instanceof Function) { 113 modal.on('hide.bs.modal', function (e) { 114 callback(e); 115 }); 116 } 117 } 118 }; 119 }, 120 dialog: function (options) { 121 options = $.extend({}, { 122 title: 'title', 123 url: '', 124 width: 800, 125 height: 550, 126 onReady: function () { }, 127 onShown: function (e) { } 128 }, options || {}); 129 var modalId = generateId(); 130 131 var content = dialogdHtml.replace(reg, function (node, key) { 132 return { 133 Id: modalId, 134 Title: options.title 135 }[key]; 136 }); 137 $('body').append(content); 138 var target = $('#' + modalId); 139 target.find('.modal-body').load(options.url); 140 if (options.onReady()) 141 options.onReady.call(target); 142 target.modal(); 143 target.on('shown.bs.modal', function (e) { 144 if (options.onReady(e)) 145 options.onReady.call(target, e); 146 }); 147 target.on('hide.bs.modal', function (e) { 148 $('body').find(target).remove(); 149 }); 150 } 151 } 152 }(); 153 })(jQuery); 154 155 組件封裝
不瞭解組件封裝的朋友能夠先看看相關文章。這裏咱們的確認取消提示框主要用到了confirm這個屬性對應的方法。仍是來看看如何調用吧:
1 //註冊刪除按鈕的事件 2 $("#btn_delete").click(function () { 3 //取表格的選中行數據 4 var arrselections = $("#tb_departments").bootstrapTable('getSelections'); 5 if (arrselections.length <= 0) { 6 toastr.warning('請選擇有效數據'); 7 return; 8 } 9 10 Ewin.confirm({ message: "確認要刪除選擇的數據嗎?" }).on(function (e) { 11 if (!e) { 12 return; 13 } 14 $.ajax({ 15 type: "post", 16 url: "/api/DepartmentApi/Delete", 17 data: { "": JSON.stringify(arrselections) }, 18 success: function (data, status) { 19 if (status == "success") { 20 toastr.success('提交數據成功'); 21 $("#tb_departments").bootstrapTable('refresh'); 22 } 23 }, 24 error: function () { 25 toastr.error('Error'); 26 }, 27 complete: function () { 28 29 } 30 31 }); 32 }); 33 });
message屬性傳入提示的信息,on裏面注入點擊按鈕後的回調事件。
生成的效果:
在網上找bootstrap的彈出組件時老是能夠看到bootbox這麼一個東西,確實是一個很簡單的組件,仍是來看看如何使用吧。
bootbox API:http://bootboxjs.com/documentation.html
固然要使用它必需要添加組件嘍。無非也是兩種方式:引入源碼和Nuget。
接下來就是使用它了。首先固然是添加bootbox.js的引用了。而後就是在相應的地方調用了。
1 $("#btn_delete").click(function () { 2 var arrselections = $("#tb_departments").bootstrapTable('getSelections'); 3 if (arrselections.length <= 0) { 4 toastr.warning('請選擇有效數據'); 5 return; 6 } 7 8 bootbox.alert("確認刪除", function () { 9 var strResult = ""; 10 }) 11 bootbox.prompt("確認刪除", function (result) { 12 var strResult = result; 13 }) 14 bootbox.confirm("確認刪除", function (result) { 15 var strResult = result; 16 }) 17 18 });
效果展現:
更多用法能夠參見api。使用起來基本很簡單。這個組件最大的特色就是和bootstrap的風格可以很好的保持一致。
要使用它,仍是老規矩:Nuget。
(1)文檔
sweetalert Api:http://t4t5.github.io/sweetalert/
開源項目源碼:https://github.com/t4t5/sweetalert
(2)在cshtml頁面引入js和css
1 <link href="~/Styles/sweetalert.css" rel="stylesheet" /> 2 <script src="~/Scripts/sweetalert.min.js"></script>
(3)js使用
1 swal({ 2 title: "操做提示", //彈出框的title 3 text: "肯定刪除嗎?", //彈出框裏面的提示文本 4 type: "warning", //彈出框類型 5 showCancelButton: true, //是否顯示取消按鈕 6 confirmButtonColor: "#DD6B55",//肯定按鈕顏色 7 cancelButtonText: "取消",//取消按鈕文本 8 confirmButtonText: "是的,肯定刪除!",//肯定按鈕上面的文檔 9 closeOnConfirm: true 10 }, function () { 11 $.ajax({ 12 type: "post", 13 url: "/Home/Delete", 14 data: { "": JSON.stringify(arrselections) }, 15 success: function (data, status) { 16 if (status == "success") { 17 toastr.success('提交數據成功'); 18 $("#tb_departments").bootstrapTable('refresh'); 19 } 20 }, 21 error: function () { 22 toastr.error('Error'); 23 }, 24 complete: function () { 25 26 } 27 28 }); 29 });
(4)效果展現:
點擊肯定後進入回調函數:
組件不少,用哪一種園友沒能夠自行決定,不過博主以爲像一些互聯網、電子商務類型的網站用sweetalert效果比較合適,通常的內部系統可能也用不上。
關於信息提示框,博主項目中使用的是toastr.js這麼一個組件,這個組件最大的好處就是異步、無阻塞,提示後可設置消失時間,而且能夠將消息提示放到界面的各個地方。先來看看效果。
官方文檔以及源碼
源碼網站:http://codeseven.github.io/toastr/
api:http://www.ithao123.cn/content-2414918.html
關於它的使用。
(1)、引入js和css
1 <link href="~/Content/toastr/toastr.css" rel="stylesheet" /> 2 <script src="~/Content/toastr/toastr.min.js"></script>
(2)、js初始化
1 <script type="text/javascript"> 2 toastr.options.positionClass = 'toast-bottom-right'; 3 </script>
將這個屬性值設置爲不一樣的值就能讓提示信息顯示在不一樣的位置,如toast-bottom-right表示下右、toast-bottom-center表示下中、toast-top-center表示上中等,更過位置信息請查看文檔。
(3)、使用
1 //初始化編輯按鈕 2 $("#btn_edit").click(function () { 3 var arrselections = $("#tb_departments").bootstrapTable('getSelections'); 4 if (arrselections.length > 1) { 5 toastr.warning('只能選擇一行進行編輯'); 6 7 return; 8 } 9 if (arrselections.length <= 0) { 10 toastr.warning('請選擇有效數據'); 11 12 return; 13 } 14 15 $('#myModal').modal(); 16 });
使用起來就以下一句:
1 toastr.warning('只能選擇一行進行編輯');
是否是很簡單~~這裏的有四種方法分別對應四種不一樣顏色的提示框。
1 toastr.success('提交數據成功'); 2 toastr.error('Error'); 3 toastr.warning('只能選擇一行進行編輯'); 4 toastr.info('info');
分別對應上圖中的四種顏色的提示框。
在Bootstrap中文網裏面提到了一個alert組件:Messenger。
它的使用和toastr.js這個組件基本類似,只不過效果有點不太同樣。咱們仍是來看看它是如何使用的。
(1)效果展現
能夠定位到網頁的不一樣位置,例以下圖中給出的下中位置、上中位置。
提示框的樣式有三種狀態:Success、Error、Info
而且支持四種不一樣樣式的提示框:Future、Block、Air、Ice
(2)組件使用以及代碼示例
Messenger Api文檔:http://www.bootcss.com/p/messenger/
Messenger 源碼:https://github.com/HubSpot/messenger
關於它的使用和toastr大同小異,首先引入組件:
1 <script src="~/Content/HubSpot-messenger-a3df9a6/build/js/messenger.js"></script> 2 <link href="~/Content/HubSpot-messenger-a3df9a6/build/css/messenger.css" rel="stylesheet" /> 3 <link href="~/Content/HubSpot-messenger-a3df9a6/build/css/messenger-theme-future.css" rel="stylesheet" />
初始化它的位置
1 <script type="text/javascript"> 2 $._messengerDefaults = { 3 extraClasses: 'messenger-fixed messenger-theme-future messenger-on-bottom messenger-on-right' 4 } 5 </script>
而後js裏面使用以下:
1 $("#btn_delete").click(function () { 2 $.globalMessenger().post({ 3 message: "操做成功",//提示信息 4 type: 'info',//消息類型。error、info、success 5 hideAfter: 2,//多長時間消失 6 showCloseButton:true,//是否顯示關閉按鈕 7 hideOnNavigate: true //是否隱藏導航 8 }); 9 });
若是提示框使用默認樣式,也只有一句就能解決
1 $.globalMessenger().post({ 2 message: "操做成功",//提示信息 3 type: 'info',//消息類型。error、info、success 4 });
很簡單很強大有木有~~
以上就是博主花了幾個小時時間整理出來的幾種經常使用bootstrap經常使用彈出和提示框的效果以及使用小結,雖然花了點時間,但想一想值了。若是你以爲文章能或多或少幫到你,請幫忙推薦一下吧,畢竟有你的支持,博主纔有更大的動力。另外,若是園友們有什麼更好的的彈出提示組件,不吝賜教~~歡迎拍磚~~
鑑於園友提的一個問題,博主將toastr組件加了一個居中顯示的效果,其實也很簡單,在此記錄下:
在toastr.css文件中加一個樣式:
1 .toast-center-center { 2 top: 50%; 3 left: 50%; 4 margin-top: -25px; 5 margin-left: -150px; 6 }
而後在指定位置的時候
1 <script type="text/javascript"> 2 toastr.options.positionClass = 'toast-center-center'; 3 </script>
搞定,而後看看效果: