iframe
我在我的网站中使用了以下内容
<script src="http://code.jquery.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery('#video1').click(function(){
alert($(this).attr('id'));
});
</script>
<iframe id="video1" width="520" height="360" src="http://www.youtube.com/embed/TJ2X4dFhAC0?enablejsapi" frameborder="0" allowfullscreen></iframe>
我需要获取iframe 视频id
的iframe
onclick,我该怎么做?