我在html页面中使用此代码。 点击图片“photo_medias”时,图片消失,视频iframe显示。它工作正常,但我想用这个代码创建一个jQuery函数。我不想在我的HTML中使用JavaScript。有人可以帮我吗?
<li class="mix videos">
<div onclick="this.nextSibling.style.display='block'; this.style.display='none'">
<img src="http://img.youtube.com/vi/<?php the_sub_field('youtube'); ?>/0.jpg" class="photo_medias" style="cursor:pointer" />
</div>
<div style="display:none">
<iframe class="youtube" src="//www.youtube.com/embed/<?php the_sub_field('youtube'); ?>" frameborder="0" allowfullscreen></iframe>
</div>
</li>
答案 0 :(得分:0)
你可以做到
$('.mix.videos div').click(function () {
$(this).hide().siblings().show();
});
<小时/> 或
$('.mix.videos div').click(function () {
$(this).hide();
next_el = $(this).next().length ? $(this).next() : $(this).closest('.mix.videos').children().first();
next_el.show();
});