Stop YouTube video within iFrame on external Button click

前端 未结 3 2042
予麋鹿
予麋鹿 2021-02-12 17:43

I know there are similar questions to this, but I haven\'t quite been able to get it to work.

This code shows a YouTube video which is within an iframe. When a button (

3条回答
  •  渐次进展
    2021-02-12 18:17

    //in HTML

    
    Example Video Modal
    
    

    This modal has video

    //in apps.js

    function destroyVideo(){
        var url = $('#youtubePlayer').attr('src');
        $('#youtubePlayer').attr('src', '');
        $('#youtubePlayer').attr('src', url);
    }
    

    //This work for Foundation 6.2

提交回复
热议问题