jquery获取iframe document对象的例子

发布时间:2020-04-20编辑:脚本学堂
有关juqery取得iframe中document对象的方法,获取iframe的document对象进行dom操作,例子很简单,主要学习下prop的用法,需要的朋友做个参考。

例子,获取iframe的document对象进行dom操作。
 

复制代码 代码示例:
$(function() {
var result = $('#myframe').prop('contentWindow').document;
console.log(result);
});

输出结果:document对象

有关document对象的用法

有关iframe的相关内容