我的网页中有iframe视频列表.
<iframe width="520" height="360" src="http://www.youtube.com/embed/2muxrT5_a6E" frameborder="0" allowfullscreen></iframe> <iframe width="520" height="360" src="http://www.youtube.com/embed/2muxrT5_a6E" frameborder="0" allowfullscreen></iframe> <iframe width="520" height="360" src="http://www.youtube.com/embed/2muxrT5_a6E" frameborder="0" allowfullscreen></iframe> <a href="#" class="close">Stop all videos</a>
我需要停止所有播放iframe视频点击链接停止所有视频.我怎样才能做到这一点?
解决方法
尝试这样,
<script language="javascript" type="text/javascript" src="jquery-1.8.2.js"></script> <script language="javascript" type="text/javascript"> $(function(){ $('.close').click(function(){ $('iframe').attr('src',$('iframe').attr('src')); }); }); </script>