0

Youtubeのクリックを無効にするiframeか、差分クリックを設定する必要があります。前
に a を付けようとしましたが、うまくいきません。diviframe

これが私のコードです。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