利用JS從父頁面給IFRAME的子頁面調用CSS樣式檔案。

來源:互聯網
上載者:User
Code
<html>
<head>
<link href="main.css" rel="stylesheet" type="text/css">
<script>
function aaa(){
left.document.getElementsByTagName("link")[0].href="top.css";
}      
</script>
</head>
<body onload="aaa();">
<iframe name="top" src="top.html">
</iframe>

<iframe name="left" src="left.html">
</iframe>

<iframe name="right" src="right.html">
</iframe>

</body>
</html>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.