您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關bootstrap中dialog怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
使用過JQuery UI的應該知道,它里面有一個dialog的彈出框組件,功能也很豐富。
與jQuery UI的dialog類似,Bootstrap里面也內置了彈出框組件。
打開bootstrap 文檔http://v3.bootcss.com/components/可以看到它的dialog是直接嵌入到bootstrap.js和bootstrap.css里面的,也就是說,只要我們引入了bootstrap的文件,就可以直接使用它的dialog組件,是不是很方便。
使用示例
通過html代碼顯示
<!-- Button trigger modal 彈出框的觸發器 --><button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> Launch demo modal</button> <!-- Modal 彈出框的結構 --><div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h5 class="modal-title" id="myModalLabel">Modal title</h5> </div> <div class="modal-body"> ... </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary">Save changes</button> </div> </div> </div></div>
這種方式簡單直觀; 但會增加html的‘重量',而且不夠靈活,大量使用時不建議使用
通過js的方式展現
最簡單的實現方式:
BootstrapDialog.show({ message: 'Hi Apple!'});
感謝各位的閱讀!關于“bootstrap中dialog怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。