javascript 获取iframe里页面中元素值的方法

2019-12-23,,,

IE方法:
document.frames['myFrame'].document.getElementById('test').value;


火狐方法:
document.getElementById('myFrame').contentWindow.document.getElementById('test').value;


IE、火狐方法:
复制代码 代码如下:
    function getValue(){



         var tmp = '';



         if(document.frames){



                tmp += 'ie哥说:';



                tmp += document.frames['myFrame'].document.getElementById('test').value;



         }else{



                tmp = document.getElementById('myFrame').contentWindow.document.getElementById('test').value;



         }



         alert(tmp);



    }

示例代码:
a.html页面中的代码
复制代码 代码如下:
<html>
            <head>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                <title>
                    javascript 获取iframe里页面中元素的值 测试
                </title>
           </head>
           <body>
                <iframe id="myFrame" src='b.html' style="width:300px;height: 50px;"></iframe>
                <input type="button" id="btn" onclick="getValue()" value="test" >
                <script type="text/javascript">
                        function getValue(){
                            var tmp = '';
                            if(document.frames){
                                    tmp += 'ie哥说:';
                                    tmp += document.frames['myFrame'].document.getElementById('test').value;
                            }else{
                                    tmp = document.getElementById('myFrame').contentWindow.document.getElementById('test').value;
                            }
                            alert(tmp);
                        }
                </script>
            </body>
        </html>

b.html页面中的代码
复制代码 代码如下:
       <html>
            <head>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                <title>
                    我是 iframe内的页面
                </title>
            </head>
            <body>
                <input type='text' id="test" value='欢迎访问:justflyhigh.com'>
            </body>
        </html> 

您可能感兴趣的文章:

  • JavaScript实现防止网页被嵌入Frame框架的代码分享
  • 嵌入式iframe子页面与父页面js通信的方法
  • js实现防止被iframe的方法
  • js防止页面被iframe调用的方法
  • js实现网页防止被iframe框架嵌套及几种location.href的区别
  • javascript iframe内的函数调用实现方法
  • JS防止网页被嵌入iframe框架的方法分析

《javascript 获取iframe里页面中元素值的方法.doc》

下载本文的Word格式文档,以方便收藏与打印。