0

我正在尝试在我的 html 中实现模态窗口。单击注册时,将出现模式窗口。但是当我为登录实现第二个模式窗口时,只有背景发生了变化,但窗口没有出现

http://play.mink7.com/minkstock/

4

2 回答 2

3

您的登录模式 div 元素位于注册模式 div 元素中。我想你忘了结束</div>

于 2012-12-05T07:19:15.433 回答
1

您需要为登录模式添加第二个模式,与为注册模式添加的相同

<div id="login-modal" class="modal hide fade landing-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h3>Login</h3>
</div>
<div class="modal-body">
    <!-- your login code -->

   </div>

</div>
于 2012-12-05T07:09:25.577 回答