我怎样才能:
- 等待外部 iFrame 加载
- 调整外部来源 iFrame 的大小(例如:100 像素 x 40 像素)
- 偏移外部来源的 iFrame(例如:25 像素 x 50 像素)
示例代码:
<html>
<body>
<p>Here's Google's Logo Today:</p>
<iframe id="google_logo" src="http://www.google.com/search?q=stackoverflow"></iframe>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {});
</script>
</body>
</html>
我知道您无法获取外部 iFrame 的内容,但是调整大小和偏移呢?
我也知道我的例子很荒谬。