2011-03-27 5 views
2

다음과 같은 속성으로 Iframe을 만들었습니다.Iframe 스크롤 막대가 움직이지 않습니다.

<iframe id='modalIframeId' width='100%' height='100%' name='modalIframeId' marginWidth='0' marginHeight='0' frameBorder='0' scrolling='auto' scrolling='yes' title='Dialog Title'> 

나는 내용이 accordingly.This를 이동하지 않는 것은 내가이 문제를 해결 할 수 IE8과 파이어 폭스 괜찮나과 같은 시나리오 스크롤 막대 좋으 실 것입니다 마우스 휠을 위에서 아래로 스크롤?

답변

0

전체 페이지를 iframe으로 만들고 싶다면 너비와 높이가 100 %가 된 후에 볼 수 있습니다.

<frame><frameset>을 더 잘 사용할 수 있지만, 아약스 또는 PHP를 사용하는 것이 가장 좋습니다.

<frameset cols="100%"> 
    <frame src="document.html"> 
</frameset> 

<?php include 'document.html'; ?> 



<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script> 
<script> 
$.get("document.html", function(data){ 
    document.write(data) 
}); 
</script> 
관련 문제