对不起我的语言能力差。 我重写了这个问题10次。但仍然很难表达我的问题...
我的问题
我希望知道如何将js代码转移到新打开的窗口。
我的情况
我打开了新窗口事件和窗口大小调整事件js代码
//When user click <a id="new-window">new window</a>, new window come up.
$('#new-window').click(function (){
var videoWidth = $(window).width()/2;
var videoHeight = videoWidth/5*3;
var windowWidth = videoWidth + 20;
var windowHeight = videoHeight + 20;
var w = window.open('', '', 'width=' + windowWidth + ', height=' + windowHeight);
// $(#video)是 var html = $(“#video”)。clone()。attr({ “width”:videoWidth, “身高”:视频高度 });
$(w.document.body).html(html);
event.preventDefault();
});
function videoFit() {
var videoScreen = $(window).width();
$('#video').css({'width': videoScreen, 'height':videoScreen/5 * 3});
}
$( window ).resize(function(){
videoFit();
});
但是当我在新窗口中打开developTool(chrome)时,我没有放入父窗口的js文件和css文件。
以下代码刚刚调整为父窗口。
是否有任何解决方案来转发js代码?
感谢您阅读我的问题。