即時通訊嘗試使用Bootstrap創建一個簡單的彈出式登錄窗體。我下面這個教程: https://www.youtube.com/watch?v=HCEbp07hfLw
所以我嘗試做他用此代碼做:Bootsrap對話框不會顯示
<!DOCTYPE html>
<html>
<head>
<title>kaki</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"> </script>
<script type="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"> </script>
</head>
<body>
<div class="modal" id="myModal" aria-hidden="true">
<div class="modal-header">
<h3>Poop and Kaki Login</h3>
</div>
<div class="modal-body">
<form>
<label>Email</label>
<input type="email" class="span4"/><br/>
<label>Password</label>
<input type="password" class="span4"><br/><br/>
<button type="submit" class="btn btn-success">Log In</button>
<button type="reset" class="btn">Clear</button>
</form>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
當我運行代碼什麼都沒有顯示出來.. 沒有。 有什麼幫助嗎?
你需要在* Bootstrap的JS之前包含jQuery *。您是否檢查瀏覽器控制檯中的錯誤? – j08691
我只是嘗試了jQuery引導之前它沒有做任何事情......控制檯中寫道:未捕獲的錯誤:引導的JavaScript需要jQuery的 – Ron
聽起來像你jQuery是不正確加載 –