可能重复:
Make callback after play button is pushed - Youtube embed video
我的网站上嵌入了Youtube视频。代码如下
<iframe width="280" height="180" frameborder="0" src="http://www.youtube.com/embed/U5BVeZybEV4" title="YouTube video player" allowfullscreen></iframe>
我想要做的是,当我点击视频的播放按钮时,它应该执行javascript警报功能
alert("Clicked Play");
同样,如果我点击Pause按钮,它应该执行一个javascript警报功能
alert("Clicked Pause");
有任何建议如何捕捉这些事件?
提前致谢。