<div>html
<iframe src="test.html" width="400px" height="300px" ></iframe>
web
</div>ide
test.htmlhtm
<html>iframe
<head></head>it
<body>class
<div></div>
test
</body>
webkit
</html>scroll
须要在iframe外面的div以及iframe里面页面的html,body都要加上
overflow: auto;
-webkit-overflow-scrolling: touch;
这样能够出现滚动条,
说明:
须要给iframe的父元素设置独立区域可滚动,-webkit-overflow-scrolling: touch;,但同时还须要设置如下属性才能够:1. -webkit-overflow:auto;2.父元素的宽和高,还必须设置成绝对的像素,百分比是不能够的。