首页 > 其他 > 详细

iframe document对象

时间:2014-03-03 03:10:22      阅读:507      评论:0      收藏:0      [点我收藏+]

在网页中,如何获取嵌入网页中的iframe内的document 对象呢?

1、第一种访问方法

这种写法估计很多人都没有用过:

document.getElementById(‘iframe1‘).Document

注意:这里的获取document对象使用的是大写的Document, 若写成小写的document对象则指当前网页的document对象。

document.getElementById(‘iframe1‘).Document    //iframe的document对象

document.getElementById(‘iframe1‘).document    //当前网页的document对象

测试方法:

document.getElementById(‘iframe1‘).document.writeln(‘test is ok‘);  //结果:当前网页页面输出test is ok

document.getElementById(‘iframe1‘).Document.writeln(‘test is ok‘);  //结果:嵌入网页(iframe1)页面输出test is ok

2、第二种访问方法

document.getElementById(‘iframe1‘).contentWindow.document


3、iframe的获取方法

1)document.getElementById(‘iframe‘);

2)  document.getElementByTagName[index]; //方挎号中的index为iframe在网页中的索引号

3)  document.frames[index];  //通过文档的frames对象来访问iframe

iframe document对象,布布扣,bubuko.com

iframe document对象

原文:http://blog.csdn.net/hongweigg/article/details/20231461

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!