我使用了以下代码这是我的 iframe:
<iframe scrolling='no' frameborder='1' id='fblike' src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.XYZ.com%2F&send=false&layout=standard&width=450&show_faces=true&font&colorscheme=light&action=like&height=50'></iframe>
$('#fblike').contents().find('.pluginButton').css({'background','#FF8000'});
我也直接应用了Css
.pluginButton {
background: none repeat scroll 0 0 #FF8000 !important;
}
仍然无法正常工作。我想更改 pluginButton 的背景。我想将图像应用到它的背景。如何应用?