Twitter Bootstrap Modal stop Youtube video

后端 未结 21 1649
小蘑菇
小蘑菇 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:19

    if you have multiple modals with many videos, let's say you have a modal on each slide on a carousel for instance, you need something more dynamic to close/stop the video in the visible slide and not mess up all the other modals, use this:

    $(".modal").on('hidden.bs.modal', function (e) {
          $(this).find("iframe").attr("src", $(this).find("iframe").attr("src"));
      });
    

提交回复
热议问题