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

查看:309
本文介绍了使用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天全站免登陆