获取窗口的ID

时间:2011-09-06 14:45:58

标签: jquery

我正在使用jquery windows engine plugin。我创建窗口如下:

for(i=1;i<=3;i++)
    {
    mywidth=i-1;
    mywidth = mywidth*newWidth;
    $.newWindow({
        id:"iframewindow"+i,
        posx:11+mywidth,
        posy:38,
        width:newWidth,
        height:maxHeight,
        title:"Window:"+i, 
        type:"iframe",
        onWindowClose:function(){
                    alert(id)
                }
                minimizeButton: true,
                        maximizeButton: true,
                        closeButton: true,
                        draggable: true,
                        resizeable: true
    });
    }

如何在onclose事件中获取特定窗口的id。

2 个答案:

答案 0 :(得分:0)

尝试

 onWindowClose:function(){
    var id = $(this).attr('id');
    alert(id);
 }

答案 1 :(得分:0)

我不知道这个插件,但在onWindowClose处理程序中有一个疯狂的猜测是$(this).id