페이지 트리
메타 데이터의 끝으로 건너뛰기
메타 데이터의 시작으로 이동

close 

try
{
	if(window.external.IsMATRIXBrowser() == true)
	{
		window.external.Command("close", null);
	}
	else
	{
		window.close();
	}
}
catch(e)
{
	window.close();
}


일반 jsp 에서 popup 사용시 opener 설정 방법

try
{
	if(top.window != window)
	{
		if(top.window.external.IsMATRIXBrowser() == true)
		{
			window['open'] = function(URL, name, specs, replace)
			{
				top['_I_BROWSER_PARENT_'] = this;
				top['_GET_BROWSER_PARENT_'] = function()
				{
					return (top['_I_BROWSER_PARENT_']);
				};
				return top.window.open(URL, name, specs, replace);
			}
		}
	}
	else
	{
		if(window.external.IsMATRIXBrowser() == true)
		{
			this['_GET_BROWSER_PARENT_'] = this;			
		}		
	}
}catch(e) {}
  • 레이블 없음