Twitter Bootstrap Modal stop Youtube video

后端 未结 21 1665
小蘑菇
小蘑菇 2020-11-27 11:57

I\'m very new to javascript and trying to use Twitter bootstrap to get a good looking website up and running quickly. I know this has something to do with jquery, but I\'m

21条回答
  •  难免孤独
    2020-11-27 12:01

    I used a combination of Ruslanas Balčiūnas and Nathan McFarland's answers to code something that worked well for me.

    $('#myModal').on('hide',function(){
       $('.modal-body iframe').attr('src','');
    });
    

    So basically this sets the src attribute of the iframe to nothing when the close modal event is triggered. Short and sweet.

提交回复
热议问题