2011-03-27 176 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'> 

當我滾動從上到下鼠標滾輪的內容會fine.but滾動條不動accordingly.This是相同的情況下與IE8和Firefox。如何,我可以解決這個問題?

回答

0

我可以看到你的100%寬度和高度後,你想讓整個頁面成爲一個iframe。

你可以更好地使用你的<frame><frameset>,但是使用ajax或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>