用ajax,json传送数据
可以用iframe
iframe显示有滚动条,展现的大小和屏幕大小会固定住
@赖忠标: <div class="down-main">
<iframe scrolling="yes" id="edit-frame" name="edit-frame" src="/" style="width: 100%; border-width: 0px; overflow:scroll;overflow-x:hidden"></iframe>
</div>
<script type="text/javascript">
function changeFrameHeight() {
var ifm = document.getElementById("edit-frame");
ifm.height = document.documentElement.clientHeight - 56;
}
window.onresize = function () { changeFrameHeight(); }
$(function () { changeFrameHeight(); });
</script>