日期:2014-05-16 浏览次数:20639 次
<html>
<meta charset="UTF-8">
<head>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<div class="modal hide fade" tabindex="-1" id="first">
<div class="modal-body">
<input type="text">
<button type="button" data-toggle="modal" data-target="#second">跳出第二个对话框</button>
</div>
</div>
<div id="second" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-body">
文本框<input type="text">
复选框 <input type="checkbox">
单选框 <input type="radio">
</div>
</div>
<button type="button" data-toggle="modal" data-target="#first">跳出第一个对话框</button>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="bootstrap.min.js"></script>
</body>
</html>