跨域修改iframe(框架)中的文字内容

发布于 2022-09-11 21:24:45 字数 592 浏览 21 评论 0

html代码:

<body style='overflow:-Scroll;overflow-y:hidden'>
    <iframe id = "content" frameborder=no  border=0  marginwidth=0  marginheight=0  width='100%' height='100%' allowfullscreen='true' src="replace.php?http://vip.ikoori.com/index.zul"></iframe>
</body>
<script type="text/javascript">
    window.οnlοad=function(){
         console.log('执行');
    }
</script>

需求:把左上角的“办件公示”隐藏掉,class="tips",并且在window.οnlοad打印不了,是怎么回事呢?

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黒涩兲箜 2022-09-18 21:24:45

你这个父页面获取iframe子页面的内容涉及到跨域问题:document.getElementById('content').contentDocument.getElementsByClassName('tips').hide();

缱绻入梦 2022-09-18 21:24:45

可以通过获取iframe元素的contentWindowcontentDocument属性来获取iframe的window和document进行对iframe内部的操作

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文