使用 CSS 影响 iframe 内的 div 样式 [英] Using CSS to affect div style inside iframe

查看:95
本文介绍了使用 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 样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆