gpt4 book ai didi

jquery - 如何更改加载到 iframe 的外部页面的背景颜色

转载 作者:行者123 更新时间:2023-12-01 06:27:51 25 4
gpt4 key购买 nike

我尝试将外部页面加载到 iframe 中并更改该页面的背景颜色
这是代码(它不起作用 - 它改变父页面而不是 iframe 页面的颜色):

<style type="text/css">
iframe {
background-color: #F00;
}
</style>

<iframe src="http://www.filehippo.com/" height="100%" width="100%">
</iframe>


<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('body').css('background-color', '#F00');
});
</script>

最佳答案

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

如果否,则 iframe是外部的,那么 您无法更改它的原因是 Same Origin Policy .

如果是,那么您可以添加 <body>到 iframe 并使用它

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

所以你的代码将是

<html>
<body>
<style type="text/css">
iframe {
background-color: #F00;
}
</style>
<iframe src="http://www.filehippo.com/" height="100%" width="100%"></iframe>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('iframe').contents().find('body').css('backgroundColor', 'white');
});
</script>
</body>
</html>

关于jquery - 如何更改加载到 iframe 的外部页面的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14913649/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com