bootstrap學習

    0.bootstrap 下載地址 http://www.bootcss.com/ php

        手冊在線 http://v3.bootcss.com/components/css

  1. 依賴於jquery  引入jquery 再引入bootstrap  ,放在body的最下面     html

    簡例前端

  2. <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <title>Bootstrap的HTML標準模板</title>   
            <!-- Bootstrap -->
            <link href="css/bootstrap.min.css" rel="stylesheet">
            <!--你本身的樣式文件 -->
            <link href="css/your-style.css" rel="stylesheet">        
            <!-- 如下兩個插件用於在IE8以及如下版本瀏覽器支持HTML5元素和媒體查詢,若是不須要用能夠移除 -->
            <!--[if lt IE 9]>
            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
            <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
            <![endif]-->
        </head>
        <body>
            <h1>Hello, world!</h1>
            
            <!-- 若是要使用Bootstrap的js插件,必須先調入jQuery -->
            <script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
            <!-- 包括全部bootstrap的js插件或者能夠根據須要使用的js插件調用 -->
            <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> 
        </body>
    </html>

    3.bootstrap的彈窗。部分不說就是好用啊。。前陣子用layer彈窗,有些小問題啊,不能二次觸發事件效果(有多是我的緣由),本身寫的彈窗好費事啊,讓前端的哥們寫了一個,保存下來了。發現bootstrap的彈窗簡單,之後仍是本身寫吧。html5

//調用
<a href="#" data-toggle="modal" data-target="#alert">全局</a>
//彈窗  上中下三部分 標題  內容  按鈕【可省略啊】
<div class="modal fade" id='alert'>
	  <div class="modal-dialog">
		<div class="modal-content">
		  <div class="modal-header">
			<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
			<h4 class="modal-title">修改密碼</h4>
		  </div>
		  <div class="modal-body">
		  //彈窗內容
			<p>啦啦啦啦</p>
			<input type="text" name='name' id='name'>
		  </div>
		  <div class="modal-footer">
			<button type="button" class="btn btn-default" data-dismiss="modal" id='sub'>提交</button>
			<button type="button" class="btn btn-primary">取消</button>
		  </div>
		</div><!-- /.modal-content -->
	  </div><!-- /.modal-dialog -->
	</div><!-- /.modal -->

4.table  12佈局jquery

5.視頻教程 http://www.maiziedu.com/course/php/304-5965/ bootstrap


window.open('http://bbs.house365.com/help.php?id=5','','height=500,width=970,scrollbars=yes,status =yes')瀏覽器

相關文章
相關標籤/搜索