我正在使用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。
答案 0 :(得分:0)
尝试
onWindowClose:function(){
var id = $(this).attr('id');
alert(id);
}
答案 1 :(得分:0)
我不知道这个插件,但在onWindowClose处理程序中有一个疯狂的猜测是$(this).id
。