<bdo id='xOSWu'></bdo><ul id='xOSWu'></ul>
  1. <tfoot id='xOSWu'></tfoot>
      <legend id='xOSWu'><style id='xOSWu'><dir id='xOSWu'><q id='xOSWu'></q></dir></style></legend>

      <small id='xOSWu'></small><noframes id='xOSWu'>

      <i id='xOSWu'><tr id='xOSWu'><dt id='xOSWu'><q id='xOSWu'><span id='xOSWu'><b id='xOSWu'><form id='xOSWu'><ins id='xOSWu'></ins><ul id='xOSWu'></ul><sub id='xOSWu'></sub></form><legend id='xOSWu'></legend><bdo id='xOSWu'><pre id='xOSWu'><center id='xOSWu'></center></pre></bdo></b><th id='xOSWu'></th></span></q></dt></tr></i><div id='xOSWu'><tfoot id='xOSWu'></tfoot><dl id='xOSWu'><fieldset id='xOSWu'></fieldset></dl></div>
    1. 停止嵌入 youtube iframe?

      时间:2023-09-08
        <bdo id='pxxtk'></bdo><ul id='pxxtk'></ul>

              <legend id='pxxtk'><style id='pxxtk'><dir id='pxxtk'><q id='pxxtk'></q></dir></style></legend>
              <i id='pxxtk'><tr id='pxxtk'><dt id='pxxtk'><q id='pxxtk'><span id='pxxtk'><b id='pxxtk'><form id='pxxtk'><ins id='pxxtk'></ins><ul id='pxxtk'></ul><sub id='pxxtk'></sub></form><legend id='pxxtk'></legend><bdo id='pxxtk'><pre id='pxxtk'><center id='pxxtk'></center></pre></bdo></b><th id='pxxtk'></th></span></q></dt></tr></i><div id='pxxtk'><tfoot id='pxxtk'></tfoot><dl id='pxxtk'><fieldset id='pxxtk'></fieldset></dl></div>
              <tfoot id='pxxtk'></tfoot>

                  <tbody id='pxxtk'></tbody>

              1. <small id='pxxtk'></small><noframes id='pxxtk'>

                本文介绍了停止嵌入 youtube iframe?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在使用 YouTube iframe 在我的网站上嵌入视频.

                I'm using YouTube iframe to embed videos on my site.

                <iframe width="100%" height="443" class="yvideo" id="p1QgNF6J1h0"
                              src="http://www.youtube.com/embed/p1QgNF6J1h0?rel=0&controls=0&hd=1&showinfo=0&enablejsapi=1"
                              frameborder="0" allowfullscreen>
                </iframe>
                

                我在同一页面上有多个视频.

                And i have multiplie videos on the same page.

                我想使用 javascript 左右单击一个按钮来停止所有这些或其中一个.

                I want to stop all of them or one of them in a click of a button using javascript or so.

                有可能吗?

                我尝试了 Talvi Watia 所说和使用的方法:

                I tried what Talvi Watia said and used:

                $('#myStopClickButton').click(function(){
                  $('.yvideo').each(function(){
                    $(this).stopVideo();
                  });
                });
                

                我明白了:

                Uncaught TypeError: Object [object Object] has no method 'stopVideo' 
                

                推荐答案

                您可能需要通过 Youtube JavaScript API 进行审核 参考文档.

                You may want to review through the Youtube JavaScript API Reference docs.

                当您在页面上嵌入视频时,您需要传递此参数:

                When you embed your video(s) on the page, you will need to pass this parameter:

                http://www.youtube.com/v/VIDEO_ID?version=3&enablejsapi=1
                

                如果您想要停止所有视频按钮,您可以设置一个 javascript 例程来循环播放视频并停止它们:

                If you want a stop all videos button, you can setup a javascript routine to loop through your videos and stop them:

                player.stopVideo()
                

                这确实涉及跟踪页面上每个视频的所有页面 ID.更简单的可能是创建一个类,然后使用 jQuery.each.

                This does involve keeping track of all the page IDs for each video on the page. Even simpler might be to make a class and then use jQuery.each.

                $('#myStopClickButton').click(function(){
                  $('.myVideoClass').each(function(){
                    $(this).stopVideo();
                  });
                });
                

                这篇关于停止嵌入 youtube iframe?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:出现错误 403:未配置访问.请使用 Google Developers Console 为您的项目激活 API 下一篇:如何使用 YouTube API 获取视频观看次数?

                相关文章

                  <tfoot id='HRHlQ'></tfoot>
                1. <small id='HRHlQ'></small><noframes id='HRHlQ'>

                      <bdo id='HRHlQ'></bdo><ul id='HRHlQ'></ul>
                    <legend id='HRHlQ'><style id='HRHlQ'><dir id='HRHlQ'><q id='HRHlQ'></q></dir></style></legend>
                    <i id='HRHlQ'><tr id='HRHlQ'><dt id='HRHlQ'><q id='HRHlQ'><span id='HRHlQ'><b id='HRHlQ'><form id='HRHlQ'><ins id='HRHlQ'></ins><ul id='HRHlQ'></ul><sub id='HRHlQ'></sub></form><legend id='HRHlQ'></legend><bdo id='HRHlQ'><pre id='HRHlQ'><center id='HRHlQ'></center></pre></bdo></b><th id='HRHlQ'></th></span></q></dt></tr></i><div id='HRHlQ'><tfoot id='HRHlQ'></tfoot><dl id='HRHlQ'><fieldset id='HRHlQ'></fieldset></dl></div>