- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻求有关如何使用 David Bradshaw 的 iframe resizer 的帮助?我打算在博客上使用它,因为我使用 iframe 来显示跨域内容,我希望 iframe 根据其内容的大小调整大小。
这是我对博客模板所做的操作,我已在上面添加了此内容 </body>
标签:
<script type='text/javascript'>
$('iframe').iFrameSizer({
// Disable if using size method with custom dimensions.
autoResize : true,
// Override the body background style in the iFrame.
bodyBackground : null,
// Override the default body margin style in the iFrame.
// A string can be any valid value for the CSS margin attribute,
// for example '8px 3em'. A number value is converted into px.
bodyMargin : null,
bodyMarginV1 : 8,
bodyPadding : null,
// When set to true, only allow incoming messages from the domain
// listed in the src property of the iFrame tag. If your iFrame
// navigates between different domains, ports or protocols;
// then you will need to disable this option.
checkOrigin : true,
// If enabled, a window.parentIFrame object is created in the iFrame
// that contains methods outlined
enablePublicMethods : false,
// 'bodyOffset' | 'body<a href="http://www.jqueryscript.net/tags.php?/Scroll/">Scroll</a>' | 'documentElementOffset' | 'documentElementScroll' |
// 'max' | 'min' | 'grow' | 'lowestElement'
heightCalculationMethod : 'offset',
// The default value is equal to two frame refreshes at 60Hz
interval : 32,
// Setting the log option to true will make the scripts in both the host page
// and the iFrame output everything they do to the JavaScript console
// so you can see the communication between the two scripts.
log : false,
// Set maximum height/width of iFrame.
maxHeight : Infinity,
maxWidth : Infinity,
// Set minimum height/width of iFrame.
minHeight : 0,
minWidth : 0,
// Enable scroll bars in iFrame.
scrolling : false,
// Resize iFrame to content height.
sizeHeight : true,
// Resize iFrame to content width.
sizeWidth : false,
// Set the number of pixels the iFrame content size has to change by,
// before triggering resize of the iFrame.
tolerance : 0,
// Called when iFrame is closed via parentIFrame.close() method.
closedCallback : function(){},
// Initial setup callback function.
initCallback : function(){},
// Receive message posted from iFrame with the parentIFrame.sendMessage() method.
messageCallback : function(){},
// Function called after iFrame resized.
resizedCallback : function(){},
// Called before the page is repositioned after a request from the iFrame
scrollCallback : function(){return true;}
});
</script>
<script src='http://javascript.ext/system/iframeResizer.min.js' type='text/javascript'/>
我已将其添加到我的跨域页面的 </body>
上方标签:
<script src="./system/iframeResizer.contentWindow.min.js"></script>
<script src="./system/jquery.js"></script>
但是没有任何反应,iframe 没有自动调整大小:(有人可以帮助我吗?
最佳答案
您需要切换博客页面中脚本的顺序。设置 iframe 需要 iframeResizer.min.js
,因此它需要放在第一位。
此外,调用中似乎存在拼写错误。应该是:
$('iframe').iFrameResize({ /* options */ });
只有当您的页面上有 jQuery 时,这才有效。如果您没有它,您应该能够像这样设置 iframe:
iFrameResize({ /* options */ }, 'iframe');
其中 iframe
是 css 选择器。
关于javascript - 使用 David Bradshaw 的 iFrameResize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35826209/
我正在使用 Iframe Resizer而且我的代码不能跨域工作。当两个域相同时,它工作正常。你能帮我吗?这很奇怪,因为 iframe 肯定加载了 iFrameResizer.contentWindo
我需要根据内容高度动态调整 iframe 高度。我正在使用 davidjbradshaw 的 iframeResizer.js 来完成这项任务。 我也在内容页面中添加了 iframeResizer.c
我有一个外部域“domainB”,我正在从中提取内容。域 B 的脚本中包含 iframeResizer.contentWindow.min.js 我的域“domainA”包含 iframeResize
我正在寻求有关如何使用 David Bradshaw 的 iframe resizer 的帮助?我打算在博客上使用它,因为我使用 iframe 来显示跨域内容,我希望 iframe 根据其内容的大小调
我正在尝试利用iFrame Resizer根据内容(可以更改)调整同一域上 iFrame 的大小。 实例:https://bronzecc.co.uk/sunday-2nd-xi/ 我收到一个 Unc
试图制作一个具有动态高度的iframe。我知道之前有人提出过这个问题,但我无法让它发挥作用。 我有一个 WordPress 网站,有一个 form 我正在尝试在另一个非 WordPress 上使用 i
我是一名优秀的程序员,十分优秀!