이 기능은 iframe 에서 생기는 스크롤을 없애고, windows 스크롤을 이용하고자 할때 사용합니다.
HTML
<div id="tab_content_primary_01" class="tab_content" style="display:none;">
<p>
<iframe src="${ctx}/ntSvcPjtInfo.do?method=list" width="100%" height="600" onload="autoResize(this)" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" ></iframe>
</p>
<!-- iframe 가로 스크롤 없애기 -->
<script type="text/javascript">
// iframe resize
function autoResize(i)
{
var iframeHeight=
(i).contentWindow.document.body.scrollHeight;
(i).height=iframeHeight+40;
}
</script>
</div>
'작업 일지 > JS' 카테고리의 다른 글
fade 효과 - setInterval( ) - 2가지 이미지 깜빡이며 보이기 (0) | 2024.03.04 |
---|---|
이미지 사이즈에 맞게 팝업 띄우기 (0) | 2024.03.04 |
따라다니는 배너 (0) | 2023.07.05 |
TOP 버튼 (0) | 2023.07.05 |
구글맵(지도) 넣기 (0) | 2023.07.05 |