去除iframe的主体背景色

removing body background color of iframe

本文关键字:背景色 主体 iframe 去除      更新时间:2023-09-26

我的页面上有一个iframe,当前背景色为灰色,我想把颜色改为白色,但似乎无法做到。我尝试过使用jquery,但不确定这是否正确:

$(document).ready(function(){
    $('iframe').contents().find('body').css('backgroundColor', 'white');
});

基本上现在iframe中的bo标记具有内联背景颜色:#f1f0e9

有人能建议我如何更新这个背景色吗?我也试过css,但什么都没有。

问题就在这一页上http://cromorevillage.com/book.html

iframe是预订元素,它的背景色向下延伸到页面,因为必须添加iframe高度才能在选择时显示所有预订选项?

我的评论。。。

iframesrc属性是否与其父页具有匹配的域、协议和端口?

你的回应。。。

不,iframe是外部的。

您不能更改它的原因是因为同源政策。

$(document).ready(function(){
    $('iframe').contents().find('body').attr('bgcolor', 'white');
});
.css('background-color', 'white');

background-color是您要查找的css样式。


您需要添加一个值为CP="CAO PSA OUR"P3P标头,以允许跨域接口。