从跨域对Iframe应用样式

Apply style on Iframe from cross domain

本文关键字:应用 样式 Iframe      更新时间:2023-09-26

我有一个小部件,它正在通过iframe加载。我可以更改内部内容的样式吗?

我使用以下插件进行了尝试:https://github.com/davidjbradshaw/iframe-resizer/tree/master/example

jQuery('#market_quotes_f').iFrameResize({
    log : true,                  // Enable console logging
    autoResize: false,
    enablePublicMethods: true,
    sizeWidth: true     
});

提前谢谢。。

如果两者托管在同一域上,则只能从父页面更改iFrame中的样式。或者你同时控制两个域。

您正在使用的iframe resizer脚本要求将JS文件放置在iframe的主页面和子页上。如果你已经这样做了,为什么不在iframe内容中添加一个CSS文件呢?