下面是引导模型的代码,但它不起作用
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1.0">
<title>bootstrap</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.css">
</head>
<body>
<a href="#mymodel" class="btn" data-toggle="model">login</a>
<div class="model hide" id="mymodel" aria-hidden="true" >
<div class="model-header">
<h1>Login</h1>
</div>
<div class="model-body">
<form >
<label>Email</label><input type="email" class="span3"></br>
<label>Password</label><input type="password" class="span3"></br>
<button type="submit" class="btn btn-success">Login</button>
<button type="reset" class="btn ">Clear</button>
</form>
</div>
<div class="model-footer">
<button class="close" data-dismiss="model" aria-hidden="true">close</button>
</div>
</div>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>
请帮助我在引导程序中创建模型我做得很好但是当点击登录按钮时它没有出现在这里我的模型