溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Bootstrap模態(tài)框的簡單示例

發(fā)布時(shí)間:2020-07-05 13:27:46 來源:網(wǎng)絡(luò) 閱讀:2386 作者:oulafen 欄目:開發(fā)技術(shù)



前言


          使用之前要先引入bootstrap.css,bootstrap.js或bootstrap.min.js,兩種js文件的區(qū)別是一個(gè)未壓縮一個(gè)壓縮,無需全部引入。

注意:所有插件都依賴jQuery(也就是說,jQuery必須在所有插件之前引入頁面)


bootstrap引入方法:


將文件bootstrap.js或bootstrap.min.js放到所在項(xiàng)目的www/lib/js下

并在index.html中添加

<html ng-app='myApp'>
  <head>
<!--
-
- -->
    <link href='css/bootstrap.css' rel='stylesheet' type='text/css' />
  <body ng-controller='MainCtrl'>
<!--
-
- -->
    <script lang='javascript' src='lib/js/jquery/jquery-1.8.2.min.js'></script>
    <script lang='javascript' src='lib/js/bootstrap/bootstrap.min.js'></script>
<!--注意以上兩者的順序 -->

modal示例:


<body>
    <button ng-tap="test()" class="btn btn-primary">
        Click to show the modal
    </button>
    <div class="modal fade" id="myModal"   >
        <div class="modal-dialog">
            <div class="modal-content">
                <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal"  >&times;</button>
                    <h5 class="modal-title" id="myModalLabel">Modal title</h5>
                </div>
                <div class="modal-body">
                    One fine body&hellip;
                </div>
                <div class="modal-footer">
                    <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                </div>
            </div>
        </div>
    </div>
</body>

在Controller里調(diào)用

function TestController($scope ){
    $scope.test=function()
    {
        $('#myModal').modal('show');
    }
}

框效果如圖:


Bootstrap模態(tài)框的簡單示例



更多詳解及bootstrap的應(yīng)用請參考http://v3.bootcss.com/javascript/#modal

本人仍在不斷學(xué)習(xí)中,歡迎交流指正。。。


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI