我在一个 div 中嵌入了一个你的管视频,并通过单击一个按钮来实现它。现在我想在转义按键事件中隐藏 div。
html
<div
class="divpop"
id='<iframe width="640" height="480" src="https://www.youtube.com/embed/5uGo0L4ribY" frameborder="0" allowfullscreen></iframe>'><img class="project-img project-img-visible" src="images/videos/img1.jpg" alt=""'>
</div>
jQuery
$(".divpop").click(function(){
$("#popup_video").html((this).id);
});
$(#popup_video).keypress(function(e){
if (e.which==0){
$("#popup_video").empty();
} });