我想打开一个弹出窗口,但没有给出链接:只要用一些HTML和Javascript代码打开它(我把函数传递给trought)。
尝试使用:
window.open($('.my_html').html(), "Booking", "width=950,height=680");
我该怎么做?
最佳答案
writeConsole('Hello from JavaScript!');
function writeConsole(content) {
top.consoleRef=window.open('','myconsole','width=350,height=250');
top.consoleRef.document.write(content)
top.consoleRef.document.close()
}
Source