Using CSS to affect div style inside iframe(使用 CSS 影响 iframe 中的 div 样式)
问题描述
是否可以仅使用 CSS 更改位于页面 iframe 内的 div 的样式?
Is it possible to change styles of a div that resides inside an iframe on the page using CSS only?
推荐答案
你需要 JavaScript.这与在父页面中执行此操作相同,只是您必须在 JavaScript 命令前加上 iframe 的名称.
You need JavaScript. It is the same as doing it in the parent page, except you must prefix your JavaScript command with the name of the iframe.
请记住,同源策略适用,因此您只能对来自您自己的服务器的 iframe 元素执行此操作.
Remember, the same origin policy applies, so you can only do this to an iframe element which is coming from your own server.
我使用 Prototype 框架来简化它:
I use the Prototype framework to make it easier:
frame1.$('mydiv').style.border = '1px solid #000000'
或
frame1.$('mydiv').addClassName('withborder')
这篇关于使用 CSS 影响 iframe 中的 div 样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 CSS 影响 iframe 中的 div 样式


- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01