JSP/JSP

[JSP] 창(window)크기 설정

키플레이어 2019. 11. 7. 10:21
반응형

 

화면 호출시 창크기 설정 & 브라우저 사이즈 조절시 크기변경 (js파일에 설정 후 여러 jsp에 적용하여 사용)


 

windowCtl.js


$(document).ready(function() {

	var _width = $(window).width();

	if(0 != _width) {
		$('body').css('height', $(window).height() - 24);
		$('#contents').css('width', $(window).width() - 32);
		$('#iframeEx').css('height', $(window).height() - 100);

		$(window).resize(function() {  //창크기를 늘이거나 줄일경우도 포함해줘야만 한다.
			$('body').css('height', $(window).height() - 24);
			$('#contents').css('width', $(window).width() - 32);
			$('#iframeEx').css('height', $(window).height() - 100);
		});
	}
});

 

 

jswindowCtlEc.jsp


<body topmargin="0" leftmargin="0" >
	<div id="contents">
		<div id="rexView">
			<iframe name="iframeEx" id="iframeEx" src="${ServerURL}/serverPreview.jsp" 
			style="background-color:#ffffff" width="100%"  frameborder="0" scrolling="auto"></iframe> 
		</div>
	</div>
</body>

 

 

 

 

반응형