我有两个div
<div id="leftdiv"><!--#exec cgi="test.cgi"--></div>
<div id="rigthdiv" >
<iframe name="rigthdiv" class="contentiframe"allowTransparency="true" frameborder="0" src="iframebg.html"><body STYLE="background- color:transparent"></iframe>
</div>
我正在尝试从iframe更改leftdiv。我从iframe调用了下面的js,但没有任何改变。怎么了?感谢
function test() {
parent.document.getElementById("leftdiv").innerHTML = 'Processing complete.';
}
答案 0 :(得分:0)
它不适用于chrome,但它可以在firefox或IE上运行。当您使用javascript时,Chrome通常不支持iframe。您可以尝试使用JQuery。