我需要禁用 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);
});