0

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

0 回答 0