使用jQuery UI调整iFrame的大小

时间:2009-08-05 15:54:13

标签: jquery iframe user-interface resize

我有这个代码,它工作正常:

    <script>
    $(document).ready(function()
    {
        $("#test").resizable({minHeight: 50, minWidth: 50});
    });
</script>

<div id="test" style="border: .1em solid black;">
</div>

然而,当我将“div”改为“iframe”时,我再也无法调整它了。

<iframe id="test" style="border: .1em solid black;">
</iframe>

4 个答案:

答案 0 :(得分:15)

发现redsquare的演示在一次移动鼠标超过几个像素时有点不稳定。我已经应用了一些修改,有助于使调整大小更顺畅:

<html>
<head>
  <style type="text/css"> 
    #resizable { width: 150px; height: 150px; padding: 0.5em; }
    #resizable h3 { text-align: center; margin: 0; }
    .ui-resizable-helper { border: 75px solid #EFEFEF; margin: -75px; }
  </style> 
  <script type="text/javascript"> 
    $(function() {
      $("#resizable").resizable({
        helper: "ui-resizable-helper"
      });
    });
  </script> 
</head> 
<body> 
  <div class="demo"> 
    <div id="resizable" class="ui-widget-content"> 
      <iframe src="http://pastebin.me/f9ed9b9d36d17a7987e9cb670e01f0e2" class="ui-widget-content" frameborder="no" id="test" width="100%" height="100%" />
    </div> 
  <div>
</body>
</html>

调整大小的奇怪之处似乎发生,因为mousemove事件不会从iframe中冒出来。只要浏览器能够跟上mousemove事件,在处理程序CSS中使用调整大小处理程序和大边框可以最大限度地减少iframe造成的影响。

答案 1 :(得分:8)

以下代码为我工作顺利。

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Resizable - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

  <style>

  #iframe {
  width: 100%;
  height: 100%;
  border: none;    

  background: #eee ;


  z-index: 1;
}

#resizable {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 1px solid #ccc;


  z-index: 9;
}
  </style>
  <script>
  $(function() {
    $('#resizable').resizable({
      start: function(event, ui) {
        $('iframe').css('pointer-events','none');
         },
    stop: function(event, ui) {
        $('iframe').css('pointer-events','auto');
      }
  });
  });
  </script>
</head>
<body>

<div id="resizable">
  <iframe src="test.html" id="iframe">

</div>


</body>
</html>

答案 2 :(得分:1)

我认为这可能就是您要找的内容:将iframe中的内容放在div中。对于这个例子,我将给div一个“容器”的id。

$('#ID_iframe').css("height", "" + $('#ID_iframe').contents().find("#container").height() + "px");

答案 3 :(得分:0)

我在这里登陆搜索Resize iframe,但这个问题是关于使用Jquery UI插件调整大小,我只是添加了一个答案,因此它可能对将来会落入此页面搜索调整iframe大小的人有所帮助。 这可以仅使用CSS

来完成
iframe {
  height: 300px;
  width: 300px;
  resize: both;
  overflow: auto;
}

所有主流浏览器都有很好的支持。 Check out this link以及browser support