How to stop a Vimeo video with jQuery

后端 未结 7 1303
情话喂你
情话喂你 2020-12-13 13:05

When I hide a YouTube video, it stops playing. However, this is not the case for Vimeo videos. Is there another way to stop a Vimeo video?

7条回答
  •  感动是毒
    2020-12-13 13:29

    To restore the SRC attribute, use the following before clearing:

    var source = $('iframe#yourVideoId').attr('src');
    

    Next, SRC attribute clear:

    $('iframe#yourVideoId').attr('src', '');
    

    Callback previous SRC attribute:

    $('iframe#yourVideoId').attr('src', source);
    

提交回复
热议问题