0

我正在尝试使用 Coldfusion javascript 函数来创建一个 cfwindow 并将其居中。我已经按照文档/教程进行了 T 并且我已经在 CF8 和 CF9 中尝试过这个,但我无法让它居中。我究竟做错了什么?

<a href="javascript:ColdFusion.Window.create('createdWindow','Window Name',
'test.cfm',{modal: true, center: true});">Create Bound Window</a>

谢谢 :)

4

1 回答 1

1

使用下面的函数创建一个CfWindow. create_Window()<a>标签中调用函数。

function create_Window() {
    win = name + "_os_" + Math.round(Math.random() * 10000000000);

    try
    {
        twin = ColdFusion.Window.getWindowObject(winname);
        twin.destroy(true);
    }
    catch (e)
    {
        // do nothing because the window does not exist
    }

    ColdFusion.Window.create(
        win,
        'Request Page',
        'windowPageName.cfm?windowname='+win,
        {
            height:600,
            width:700,
            modal:true,
            closable:true,
            draggable:true,
            resizable:true,
            center:true,
            initshow:true
        }
    )

    winname=win;
}
于 2011-05-04T10:14:59.150 回答