3

如何使多个 iframe 可调整大小?我可以使用jqueryUI 库使一个 iframe 可调整大小。

我尝试如下:

<!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 ;

}

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


}

  </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>

上面的代码对我来说很好。但我不知道如何使多个 iframe 可调整大小。我有两个 iframe,如下图所示。我想让它们都可以调整大小。
JSFiddle

提前致谢。

在此处输入图像描述

4

1 回答 1

0

如果您声明 iframe 代码一旦多个框架自动进入另一个框架,我认为您不需要默认制作多个框架,只需编写“一些代码”

于 2021-08-16T04:57:14.590 回答