将CSS应用于Iframe内容

时间:2013-01-31 05:54:30

标签: php javascript jquery css facebook-like

我使用了下面的代码 这是我的iframe:

<iframe scrolling='no' frameborder='1' id='fblike' src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.XYZ.com%2F&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=true&amp;font&amp;colorscheme=light&amp;action=like&amp;height=50'></iframe>

$('#fblike').contents().find('.pluginButton').css({'background','#FF8000'});

我还直接申请了Css

.pluginButton {
    background: none repeat scroll 0 0 #FF8000 !important;
}

仍然没有用。我想改变pluginButton的背景。我想将图像应用到它的背景。如何申请?

2 个答案:

答案 0 :(得分:1)

设置css的代码在语义上似乎没问题,因为如果你正确使用了selectors,html就无法确保。您可能在它们可用之前访问DOM元素。框架的元素可能不会在document.read y事件上准备好,而是在window.load上将代码放在window.load中以确保iframe中的元素可用于脚本。

$(window).load(function){    
    $('#fblike').contents().find('.pluginButton').css({'background','#FF8000'});    
})

答案 1 :(得分:1)

如果我理解正确,那么你想要做的就是将CSS注入加载Facebook页面的iframe。

简短的回答是,这是不可能的。以下是在SO上发布的答案,其中包含更详细的说明:Can I apply CSS to the elements within an iframe?

  

不,不是来自iframe之外。一个是它自己的世界。如果域等匹配,那么Javascript可以进出通信,并且可以(如果它想)将CSS注入到子帧中。

     

如果包含来自其他域的内容,那么您几乎无能为力。父页面控制框架的大小以及它是否可见,并且可以通过定位等将其自己的内容放在框架上,但它不能直接影响实际框架内容的呈现方式。

以下是另一种解释:How to apply CSS to iframe?

  

编辑:这不适用于跨域。

     

这里有两个不同的东西: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['frame1'].document.body.appendChild(cssLink);