javascript – 删除iframe的正文背景颜色

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

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

基本上,iframe中的bo标签具有内联背景颜色:#f1f0e9

任何人都可以建议我如何更新这种背景颜色?我也试过css,但没有.

问题出在此页面http://cromorevillage.com/book.html

iframe是预订元素,其背景颜色向下延伸到页面,因为必须添加iframe高度以允许在选择时显示所有预订选项?

最佳答案 我的评论……

Does the src attribute of the iframe have matching domain, protocol and port to its parent page?

你的回应…

No the iframe is external.

你不能改变它的原因是因为Same Origin Policy.

点赞