Google Chrome Won't Accept .contentDocument or .contentWindow

前端 未结 3 510
隐瞒了意图╮
隐瞒了意图╮ 2021-01-06 19:06

When I try my code out:

Testing.html -



        
3条回答
  •  不要未来只要你来
    2021-01-06 19:53

    Try it without the .document

    var form = iframeEl.contentDocument.getElementById('hi').getAttribute('href');
    

    instead of

    var form = iframeEl.contentDocument.document.getElementById('hi').getAttribute('href');
    

提交回复
热议问题