accessing elements of one iframe from another iframe

前端 未结 2 1340
星月不相逢
星月不相逢 2020-12-21 08:15

I have one parent window and two iframes in it. I am trying to access elements of one iframe from another iframe.Using the code:

function startplay(){
   va         


        
2条回答
  •  悲哀的现实
    2020-12-21 08:43

    I had the same problem and solved it like this:

    My main page code:

    Left frame:

    aaa

    Right frame:

    
    

    The function is:

    changeLeftFrame(){
         parent.leftframe.document.getElementById('DivInLeftFrame').innerHTML = 'bbb';
    }
    

    add the 'document' to work.

提交回复
热议问题