iframe获取节点和监听iframe内部加载完成

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/weixin_35958891/article/details/100658972

使用

<iframe id="iframe" class="iframe" src="http://47.92.90.49/k3cloud/html5/index.aspx" frameborder="0"></iframe>
let doc = document.getElementById('iframe')
   doc.onload = function(){ 
   		let iframe = doc.contentWindow;
	}; 

猜你喜欢

转载自blog.csdn.net/weixin_35958891/article/details/100658972