码迷,mamicode.com
首页 > Web开发 > 详细

父窗口采用js控制iframe页面样式

时间:2015-06-02 09:32:39      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:js   html   javascript   

父窗口demo

<html>
<head></head>
<script language="javascript">
    function show(){
        //如果当前页与被iframe的页面属于不同域,则调用失效
        window.frames['myframe'].document.getElementsByClassName("titleLink").item(0).href = "javascript:;";
    }
</script>
<body>
<iframe name="myframe" onload="show()" width="100%" src="frame.html">
</body>
</html>

frame.html

<html>
<head></head>
<body>
<iframe name="myframe" onload="show()" width="100%" src="frame.html">
    <a href="http://google.com" class="titlelink">google</a>
    <a href="http://google.com" class="titlelink">google</a>
    <a href="http://google.com" class="titlelink">google</a>
    <a href="http://google.com" class="titlelink">google</a>
    <a href="http://google.com" class="titlelink">google</a>
</body>
</html>


父窗口采用js控制iframe页面样式

标签:js   html   javascript   

原文地址:http://blog.csdn.net/kaylio/article/details/46316395

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!