我需要停用点击Youtube iframe
或设置差异点击
我试图将div
放在iframe
前面,但它不起作用。
以下是我的代码,适用于Chrome但不适用于Mozilla:
$(".youtube").each(function () {
var div = this;
var offset = $(this).offset();
var x = offset.left;
var y = offset.top;
var height = $(this).height();
var width = $(this).width();
var divInFront = '<div style="position:absolute; height:' + height + '; width:' + width + '; top:' + y + '; left:' + x + ';" ></div>';
$("body").append(divInFront);
});