我不能这样工作。我让灯箱工作我得到了一个被点击插入到 youtube src 的链接,但我得到这个 Refused to display document 因为 X-Frame-Option 错误禁止显示。有人可以解释一下吗。
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();
});