iframe无阻塞异步加载
代码示例:
<iframe id="iframe1" src="#" width="100%" height="100%" border="2" style="z-index:1;position:fixed;"></iframe>
<script>
function setIframeSrc(){var s="https://www.baidu.com/";var iframe1=document.getElementById('iframe1');if(-1==navigator.userAgent.indexOf("MSIE")){iframe1.src=s}else{iframe1.location=s}}setTimeout(setIframeSrc,5);
</script>
相比传统iframe引入代码,不会阻塞页面后续资源加载