简体   繁体   中英

How to redirect when clicking outside bootstrap modal-content?

I have a modal in my webpage where i've already made it so that when close button is clicked it redirects to the homepage. But i also need it to redirect to the homepage when clicking outside the bootstrap modal, ie the ".modal-content" class . I tried to do this

$('#enterCodeModal').on('hidden.bs.modal', function (e) {
    window.location.replace='index.html';
});

by looking at other post similar to this but it did'nt work. It would be a great help if someone could help me solve this.

It works with window.location.href as you can see here :

 $(document).ready(function(e) { $('#myModal').on('hidden.bs.modal', function(e) { window.location.href = 'https://google.com' }); });
 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/css/bootstrap.css" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/js/bootstrap.min.js"></script> <!-- Button trigger modal --> <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> Launch demo modal </button> <!-- Modal --> <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title" id="myModalLabel">Modal title</h4> </div> <div class="modal-body"> ... </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary">Save changes</button> </div> </div> </div> </div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM