我有2个iframe(嵌入)元素。尝试在播放视频之前显示警报窗口,但没有显示警报窗口。这就是我想要做的。
这是html(2 iframe)
<iframe width="450" height="253" src="https://www.youtube.com/embed/ROtv13CqjzU?feature=oembed" frameborder="0" allowfullscreen="" style="width: 100%; height: 100%; z-index: 1; position: relative;" __idm_id__="490590210"></iframe>
<iframe src="https://player.vimeo.com/video/235638223" width="450" height="190" frameborder="0" title="AUTOMATICA - Robots Vs. Music - Nigel Stanford" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" style="width: 100%; height: 100%; z-index: 1; position: relative;"
__idm_id__="490590209"></iframe>
这是js
var iframee = document.querySelectorAll("iframe");
iframee[0].onclick = function(){
alert(this);
}
知道怎么做吗?