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 样式
基础教程推荐
- 在 contenteditable 中精确拖放 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
