我需要打开一个新窗口,我想在iframe中嵌入一个视频并在此窗口中显示。正常弹出窗口语法为:
window.open(URL,name,specs,replace)
我将如何传递iframe代码而不是URL,以便将iframe嵌入到新窗口中?请提出建议。
提前谢谢。
您不将iframe代码传递给window.open
,而是获得要打开的窗口的句柄,并将ifame写入该窗口。
var win = window.open();
win.document.write('<iframe width="560" height="315" src="//www.youtube.com/embed/mTWfqi3-3qU" frameborder="0" allowfullscreen></iframe>')