我们如何找到任何iframe内的页面的样式表。
<iframe id="#iframe" src="view_page.php"
style="transition: none 0s ease 0s;" width="750" height="899"></iframe>
console.log(document.styleSheets);
如果在没有iframe的浏览器中加载页面,则上述操作将起作用。 document.styleSheets将提供一个StyleSheets数组,包含在文件中。但是,当页面位于iframe内时,此功能不起作用。