将JavaScript添加到iframe?

时间:2011-12-22 20:09:31

标签: javascript html iframe frames

我想知道是否可以将javascript <script type="text/javascript">blahblah</script>添加到页面上的iframe OR框架集中?

只需注意:内容来自同一个域www.domain.com,但子域名不同www.blah.domain.com vs www.blah2.domain.com,我不确定这是否重要。

1 个答案:

答案 0 :(得分:2)

这很重要但幸运的是有一个相当简单的修复。您只需将双方的document.domain属性设置为同一个域(例如document.domain = 'domain.com'

document.domain只能设置为同一个超级域,因此您无法使用www.example.comblah.example2.com执行此操作。

设置document.domain属性后,您应该能够以与在同一子域中相同的方式连接iframe。

以下是如何将脚本标记插入iFrame:Insert a Script into a iFrame's Header, without clearing out the body of the iFrame