Iframe滚动条没有移动

时间:2011-03-27 13:08:57

标签: javascript jquery iframe scrollbar mousewheel

我创建了一个具有以下属性的iframe。

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

当我用鼠标滚轮从上到下滚动时内容很正常。但滚动条没有相应移动。这与IE8和firefox的情况相同。我如何解决这个问题?

1 个答案:

答案 0 :(得分: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>