如何操作iframe之外的元素

how to manipulate elements outside of iframe

本文关键字:元素 iframe 何操作 操作      更新时间:2023-09-26

我试图通过在iframe内部设置JS来操作iframe外部的元素style.backgroundColor代码有效,但在Html 中无效

我有

<script type="text/javascript"> 
           //get main document element.
           var ititle= parent.document.getElementById('MainTitle');
           //works          
           ititle.style.backgroundColor = "#FFCC00";
       //doesn't work
       ititle.innerHtml='test html';
</script>  

上面的脚本在我的iframe 中

有什么原因吗?非常感谢。

因为JavaScript是区分大小写的,它是innerHTML(所有大写字母):

 ititle.innerHtml='test html';
 //should be
 ititle.innerHTML='test html';