문제

I am trying to implement Modal Window in my html. On Clicking Register the modal Window appears. But when i implement a second modal window for Login only the background changed but the window doesnt appear

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

도움이 되었습니까?

해결책

Your login modal div element is within the register modal div element. I think you forgot a closing </div>

다른 팁

You will need to add second modal for login modal, same as you have added for register-modal

<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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top