0
我不能這樣工作。我得到的燈箱工作,我得到了一個鏈接被點擊插入到youtube src,但我得到這個拒絕顯示文檔,因爲X-Frame-Option錯誤禁止顯示。有人可以解釋這一點。如何修復iframe拒絕顯示文檔,因爲X-Frame-Options禁止顯示
var $this = $(this),
use_iframe =true,
url = $this.attr('href'),
name = $this.html(),
// replace = false,
$frame = $('#frame');
var createvideoBox = function() {
$('<div class="overlay"></div>').appendTo('#container');
$frame.css({
'top' : 50 + 'px',
'position': 'fixed',
'left' : 50 +'%',
'margin-left' : -370 +'px',
'width' : 1110 +'px',
'z-index' : 2,
'display' : 'block',
'backgroundColor' : 'white'
});
}
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= //
// // – Trigger Event
// // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
$('a').on("click", function(event) {
var url = $(this).attr('href');
// console.log(url);
// $('iframe').attr('src', url);
createvideoBox();
if(use_iframe) {
$('iframe').attr('src', url);
} else {
window.open(url,name,replace);
}
///Prevent link execution
event.preventDefault();
});