如何为弹出窗口选项...大小

时间:2009-05-15 10:37:23

标签: javascript

我有以下功能来制作一个弹出窗口。

function makewindows(html){
child1 = window.open ("about:blank");
child1.document.write(html);
child1.document.close(); 
}

它工作正常,但它在firefox中打开一个新选项卡。我想知道如何使它成为一个实际的弹出窗口,其尺寸较小,与实际窗口分开。

1 个答案:

答案 0 :(得分:0)

window.open("example.html", "windowName",
            "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");

有关详细信息,请参阅MSDN window.open documentationMozilla window.open documentation