我有以下功能来制作一个弹出窗口。
function makewindows(html){
child1 = window.open ("about:blank");
child1.document.write(html);
child1.document.close();
}
它工作正常,但它在firefox中打开一个新选项卡。我想知道如何使它成为一个实际的弹出窗口,其尺寸较小,与实际窗口分开。
答案 0 :(得分:0)
window.open("example.html", "windowName",
"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
有关详细信息,请参阅MSDN window.open documentation或Mozilla window.open documentation。