How to get the window object node iframe

You need to use iframeElement.contentWindow; 

var frame = document.getElementById('theFrame');
var frameWindow = frame.contentWindow;

 

Guess you like

Origin www.cnblogs.com/aisowe/p/11719094.html