0

我正在使用 iframe 将 html 页面用作另一个 html 页面中的标题。源标题宽度不适合屏幕。有什么办法可以让它适合屏幕吗?

4

2 回答 2

0

试试这个代码

<script type="text/javascript" >
 $(document).ready(function(){
      window.setInterval(resizeIframeHeader, 2000);
   });

  var pastHeight = 0;

  function resizeIframeHeader() {
  var currentHeight = document.body.scrollHeight;
  var currentWidth = document.body.scrollWidth;
  if (currentHeight != pastHeight){
   pastHeight = currentHeight;
   parent.postMessage(document.body.scrollHeight, '*');
  }
 if (currentWidth != pastWidth){
   pastHeight = currentWidth ;
   parent.postMessage(document.body.scrollWidth, '*');
  }
 }
</script>
于 2013-09-28T16:58:00.950 回答
0

这是您页面的小提琴:小提琴

<body>
Your page content
</body>
于 2013-09-28T17:38:56.873 回答