ipad上的Youtube iframe无法覆盖

时间:2012-12-06 16:13:54

标签: javascript ipad iframe youtube

jsfiddle

<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/FPCrhT0q5Ns?wmode=opaque" frameborder="0">
</iframe>
<a class="close"></a>
.close {
    width: 50px; height: 50px;
    background: #fff;
    position: absolute;
    left: 600px;
    top: 0;
    z-index: 2147483638;
    cursor: pointer;
}​
$(".close").bind("click touchend", function() {
    alert("");
});​
  1. 在ipad中打开jsfiddle(仅限)
  2. 播放视频
  3. 尝试点击白色按钮
  4. 结果:点击不会工作

    PS别告诉我 wmode 。在发布问题之前,我已经尝试了所有可能的值

1 个答案:

答案 0 :(得分:0)

wmode=transparent的参数添加到iframe

中的src网址

Updated jsfiddle