페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

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) {}