我有一个简单的页面,其中包含一些iframe部分(用于显示RSS链接)。如何将主页面中的相同CSS格式应用到iframe中显示的页面?
答案 0 :(得分:408)
修改:除非设置了相应的CORS header,否则这不适用于跨域。
这里有两个不同的东西:iframe块的样式和嵌入在iframe中的页面样式。您可以通常的方式设置iframe块的样式:
<iframe name="iframe1" id="iframe1" src="empty.htm"
frameborder="0" border="0" cellspacing="0"
style="border-style: none;width: 100%; height: 120px;"></iframe>
iframe中嵌入的页面样式必须通过将其包含在子页面中来设置:
<link type="text/css" rel="Stylesheet" href="Style/simple.css" />
或者可以使用Javascript从父页面加载:
var cssLink = document.createElement("link");
cssLink.href = "style.css";
cssLink.rel = "stylesheet";
cssLink.type = "text/css";
frames['iframe1'].document.head.appendChild(cssLink);
答案 1 :(得分:189)
我用 Google日历遇到了这个问题。我想在较暗的背景上设置样式并更改字体。
幸运的是,嵌入代码中的URL对直接访问没有限制,因此通过使用PHP函数file_get_contents
可以获得
来自页面的整个内容。可以调用位于服务器上的php文件,而不是调用Google URL。 google.php
,其中包含原始内容并进行修改:
$content = file_get_contents('https://www.google.com/calendar/embed?src=%23contacts%40group.v.calendar.google.com&ctz=America/Montreal');
添加样式表的路径:
$content = str_replace('</head>','<link rel="stylesheet" href="http://www.yourwebsiteurl.com/google.css" /></head>', $content);
(这会将样式表放在head
结束标记之前。)
如果css和js相对调用,请指定原始网址的基本网址:
$content = str_replace('</title>','</title><base href="https://www.google.com/calendar/" />', $content);
最终的google.php
文件应如下所示:
<?php
$content = file_get_contents('https://www.google.com/calendar/embed?src=%23contacts%40group.v.calendar.google.com&ctz=America/Montreal');
$content = str_replace('</title>','</title><base href="https://www.google.com/calendar/" />', $content);
$content = str_replace('</head>','<link rel="stylesheet" href="http://www.yourwebsiteurl.com/google.css" /></head>', $content);
echo $content;
然后您将iframe
嵌入代码更改为:
<iframe src="http://www.yourwebsiteurl.com/google.php" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
祝你好运!
答案 2 :(得分:71)
如果iframe的内容不完全在您的控制之下,或者您想要使用不同样式访问不同页面中的内容,您可以尝试使用JavaScript操作它。
var frm = frames['frame'].document;
var otherhead = frm.getElementsByTagName("head")[0];
var link = frm.createElement("link");
link.setAttribute("rel", "stylesheet");
link.setAttribute("type", "text/css");
link.setAttribute("href", "style.css");
otherhead.appendChild(link);
请注意,根据您使用的浏览器,这可能仅适用于来自同一域的网页。
答案 3 :(得分:56)
var $head = $("#eFormIFrame").contents().find("head");
$head.append($("<link/>", {
rel: "stylesheet",
href: url,
type: "text/css"
}));
答案 4 :(得分:32)
大多数浏览器都会像一个不同的HTML页面一样处理iframe。如果您想将相同的样式表应用于iframe的内容,只需从那里使用的页面中引用它。
答案 5 :(得分:26)
如果你控制iframe中的页面,正如hangy所说,最简单的方法是创建一个具有常见样式的共享CSS文件,然后从你的html页面链接到它。
否则,您不太可能从iframe中的外部页面动态更改页面样式。这是因为浏览器加剧了跨框架dom脚本的安全性,因为可能会滥用欺骗和其他黑客攻击。
This tutorial可能会为您提供有关一般编写iframe脚本的更多信息。 About cross frame scripting从IE角度解释了安全限制。
答案 6 :(得分:26)
以下是如何直接应用CSS代码而不使用<link>
加载额外的样式表。
var head = jQuery("#iframe").contents().find("head");
var css = '<style type="text/css">' +
'#banner{display:none}; ' +
'</style>';
jQuery(head).append(css);
这会在iframe页面中隐藏横幅广告。谢谢你的建议!
答案 7 :(得分:20)
以上稍作改动的作品:
var cssLink = document.createElement("link")
cssLink.href = "pFstylesEditor.css";
cssLink.rel = "stylesheet";
cssLink.type = "text/css";
//Instead of this
//frames['frame1'].document.body.appendChild(cssLink);
//Do this
var doc=document.getElementById("edit").contentWindow.document;
//If you are doing any dynamic writing do that first
doc.open();
doc.write(myData);
doc.close();
//Then append child
doc.body.appendChild(cssLink);
至少
适用于ff3和ie8答案 8 :(得分:13)
如果你想从主页面重用CSS和JavaScript,你应该考虑用加载了Ajax的内容替换<IFRAME>
。现在,当搜索机器人能够执行JavaScript时,这对SEO更加友好。
这是jQuery示例,其中包含您文档中的另一个html页面。这比iframe
更加友好。为了确保机器人没有为包含的页面建立索引,只需将其添加到robots.txt
<html>
<header>
<script src="/js/jquery.js" type="text/javascript"></script>
</header>
<body>
<div id='include-from-outside'></div>
<script type='text/javascript'>
$('#include-from-outside').load('http://example.com/included.html');
</script>
</body>
</html>
您还可以直接从Google添加jQuery:http://code.google.com/apis/ajaxlibs/documentation/ - 这意味着可选的自动包含更新的版本和一些显着的速度提升。此外,意味着你必须信任它们只为你提供jQuery;)
答案 9 :(得分:12)
以下对我有用。
var iframe = top.frames[name].document;
var css = '' +
'<style type="text/css">' +
'body{margin:0;padding:0;background:transparent}' +
'</style>';
iframe.open();
iframe.write(css);
iframe.close();
答案 10 :(得分:8)
扩展上述jQuery解决方案,以应对加载帧内容的任何延迟。
$('iframe').each(function(){
function injectCSS(){
$iframe.contents().find('head').append(
$('<link/>', { rel: 'stylesheet', href: 'iframe.css', type: 'text/css' })
);
}
var $iframe = $(this);
$iframe.on('load', injectCSS);
injectCSS();
});
答案 11 :(得分:8)
我的精简版:
<script type="text/javascript">
$(window).load(function () {
var frame = $('iframe').get(0);
if (frame != null) {
var frmHead = $(frame).contents().find('head');
if (frmHead != null) {
frmHead.append($('style, link[rel=stylesheet]').clone()); // clone existing css link
//frmHead.append($("<link/>", { rel: "stylesheet", href: "/styles/style.css", type: "text/css" })); // or create css link yourself
}
}
});
</script>
但是,有时iframe
在窗口加载时尚未就绪,因此需要使用计时器。
即用型代码(带计时器):
<script type="text/javascript">
var frameListener;
$(window).load(function () {
frameListener = setInterval("frameLoaded()", 50);
});
function frameLoaded() {
var frame = $('iframe').get(0);
if (frame != null) {
var frmHead = $(frame).contents().find('head');
if (frmHead != null) {
clearInterval(frameListener); // stop the listener
frmHead.append($('style, link[rel=stylesheet]').clone()); // clone existing css link
//frmHead.append($("<link/>", { rel: "stylesheet", href: "/styles/style.css", type: "text/css" })); // or create css link yourself
}
}
}
</script>
...和jQuery链接:
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js" type="text/javascript"></script>
答案 12 :(得分:6)
当您说“doc.open()”时,这意味着您可以在iframe中编写任何HTML标记,因此您应该为HTML页面编写所有基本标记,并且如果您想在iframe头部中创建CSS链接只需在其中编写带有CSS链接的iframe。我举个例子:
doc.open();
doc.write('<!DOCTYPE html><html><head><meta charset="utf-8"/><meta http-quiv="Content-Type" content="text/html; charset=utf-8"/><title>Print Frame</title><link rel="stylesheet" type="text/css" href="/css/print.css"/></head><body><table id="' + gridId + 'Printable' + '" class="print" >' + out + '</table></body></html>');
doc.close();
答案 13 :(得分:5)
您将无法以这种方式设置iframe的内容样式。我的建议是使用服务器端脚本(PHP,ASP或Perl脚本)或找到将feed转换为JavaScript代码的在线服务。唯一的另一种方法是,如果你可以做一个服务器端包含。
答案 14 :(得分:5)
使用可以试试这个:
$('iframe').load( function() {
$('iframe').contents().find("head")
.append($("<style type='text/css'> .my-class{display:none;} </style>"));
});
答案 15 :(得分:3)
其他答案似乎使用jQuery和CSS链接。
此代码使用vanilla JavaScript。它会创建一个新的<style>
元素。它将该元素的文本内容设置为包含新CSS的字符串。它将该元素直接附加到iframe文档的头部。
var iframe = document.getElementById('the-iframe');
var style = document.createElement('style');
style.textContent =
'.some-class-name {' +
' some-style-name: some-value;' +
'}'
;
iframe.contentDocument.head.appendChild(style);
答案 16 :(得分:2)
我们可以在iframe中插入样式标签。 Posted also here...
<style type="text/css" id="cssID">
.className
{
background-color: red;
}
</style>
<iframe id="iFrameID"></iframe>
<script type="text/javascript">
$(function () {
$("#iFrameID").contents().find("head")[0].appendChild(cssID);
//Or $("#iFrameID").contents().find("head")[0].appendChild($('#cssID')[0]);
});
</script>
答案 17 :(得分:2)
我找到了另一个解决方案,将样式放在主要的html中,就像这样
<style id="iframestyle">
html {
color: white;
background: black;
}
</style>
<style>
html {
color: initial;
background: initial;
}
iframe {
border: none;
}
</style>
然后在iframe中执行此操作(请参阅js onload)
<iframe onload="iframe.document.head.appendChild(ifstyle)" name="log" src="/upgrading.log"></iframe>
和js
<script>
ifstyle = document.getElementById('iframestyle')
iframe = top.frames["log"];
</script>
它可能不是最好的解决方案,它当然可以改进,但如果你想在父窗口中保留“样式”标签,那么它是另一种选择
答案 18 :(得分:2)
如果您有权访问iframe页面并且只有在您通过页面上的iframe加载时才想要使用其他CSS,这里我找到了解决这类问题的方法
即使iframe正在加载不同的域
,这也有效检查postMessage()
计划是,将css作为消息发送到iframe,如
iframenode.postMessage('h2{color:red;}','*');
*
是发送此消息,而不管iframe中的域名是什么
并在iframe中接收消息,并将收到的消息(CSS)添加到该文档头。
要添加到iframe页面的代码
window.addEventListener('message',function(e){
if(e.data == 'send_user_details')
document.head.appendChild('<style>'+e.data+'</style>');
});
答案 19 :(得分:1)
我认为最简单的方法是添加另一个div,与iframe在同一个地方,然后
使其z-index
大于iframe容器,因此您可以轻松地设置自己的div样式。如果您需要点击它,只需在您自己的div上使用pointer-events:none
,这样iframe就可以使用,以防您需要点击它;)
我希望它会帮助某人;)
答案 20 :(得分:1)
这里,域内有两件事
所以你想按照以下方式设计这两个部分,
<强> 1。 iFrame部分的样式
它可以使用具有尊重的id
或class
名称的CSS来设置样式。您也可以在父样式表中设置样式。
<style>
#my_iFrame{
height: 300px;
width: 100%;
position:absolute;
top:0;
left:0;
border: 1px black solid;
}
</style>
<iframe name='iframe1' id="my_iFrame" src="#" cellspacing="0"></iframe>
<强> 2。设置iFrame中加载的页面样式
可以在Javascript
的帮助下从父页面加载此样式var cssFile = document.createElement("link")
cssFile.rel = "stylesheet";
cssFile.type = "text/css";
cssFile.href = "iFramePage.css";
然后将CSS文件设置为受尊重的iFrame部分
//to Load in the Body Part
frames['my_iFrame'].document.body.appendChild(cssFile);
//to Load in the Head Part
frames['my_iFrame'].document.head.appendChild(cssFile);
在这里,您也可以使用这种方式在iFrame中编辑页面的头部
var $iFrameHead = $("#my_iFrame").contents().find("head");
$iFrameHead.append(
$("<link/>",{
rel: "stylesheet",
href: urlPath,
type: "text/css" }
));
答案 21 :(得分:1)
由于针对相同的域编写了许多答案,因此我将写出如何在跨域中做到这一点。
首先,您需要了解Post Message API。我们需要使者在两个窗口之间进行通信。
这是我创建的Messenger。
/**
* Creates a messenger between two windows
* which have two different domains
*/
class CrossMessenger {
/**
*
* @param {object} otherWindow - window object of the other
* @param {string} targetDomain - domain of the other window
* @param {object} eventHandlers - all the event names and handlers
*/
constructor(otherWindow, targetDomain, eventHandlers = {}) {
this.otherWindow = otherWindow;
this.targetDomain = targetDomain;
this.eventHandlers = eventHandlers;
window.addEventListener("message", (e) => this.receive.call(this, e));
}
post(event, data) {
try {
// data obj should have event name
var json = JSON.stringify({
event,
data
});
this.otherWindow.postMessage(json, this.targetDomain);
} catch (e) {}
}
receive(e) {
var json;
try {
json = JSON.parse(e.data ? e.data : "{}");
} catch (e) {
return;
}
var eventName = json.event,
data = json.data;
if (e.origin !== this.targetDomain)
return;
if (typeof this.eventHandlers[eventName] === "function")
this.eventHandlers[eventName](data);
}
}
在两个窗口中使用它进行通信可以解决您的问题。
在主窗口中,
var msger = new CrossMessenger(iframe.contentWindow, "https://iframe.s.domain");
var cssContent = Array.prototype.map.call(yourCSSElement.sheet.cssRules, css_text).join('\n');
msger.post("cssContent", {
css: cssContent
})
然后,从iframe接收事件。
在iframe中:
var msger = new CrossMessenger(window.parent, "https://parent.window.domain", {
cssContent: (data) => {
var cssElem = document.createElement("style");
cssElem.innerHTML = data.css;
document.head.appendChild(cssElem);
}
})
有关更多详细信息,请参见完整的Javascript and Iframes教程。
答案 22 :(得分:0)
有一个wonderful script用自身的iframe版本替换节点。 CodePen Demo
使用示例:
// Single node
var component = document.querySelector('.component');
var iframe = iframify(component);
// Collection of nodes
var components = document.querySelectorAll('.component');
var iframes = Array.prototype.map.call(components, function (component) {
return iframify(component, {});
});
// With options
var component = document.querySelector('.component');
var iframe = iframify(component, {
headExtra: '<style>.component { color: red; }</style>',
metaViewport: '<meta name="viewport" content="width=device-width">'
});
答案 23 :(得分:0)
var link1 = document.createElement('link');
link1.type = 'text/css';
link1.rel = 'stylesheet';
link1.href = "../../assets/css/normalize.css";
window.frames['richTextField'].document.body.appendChild(link1);
答案 24 :(得分:0)
答案 25 :(得分:-1)
最佳方式可能如下(如果您控制目标网站):
1)使用style
参数设置iframe链接,例如:
http://your_site.com/target.php?style=a%7Bcolor%3Ared%7D
(最后一个短语是由a{color:red}
函数编码的urlencode
。
2)像这样设置接收者页面target.php
:
<head>
..........
<style><? echo urldecode($_GET['style']);?> </style>
..........
答案 26 :(得分:-16)
好吧,我已按照以下步骤操作:
iframe
iframe
添加到div
。divClass { width: 500px; height: 500px; }
divClass iframe { width: 100%; height: 100%; }
这适用于IE 6.应该可以在其他浏览器中使用,请检查!