当前位置:主页 > 网页前端 > jquery >

jQuery获取iframe的document对象的方法

时间:2021-01-23 10:12:55 | 栏目:jquery | 点击:

获取iframe的document对象的目的就是进行dom的操作

$(function() {
var result = $('#myframe').prop('contentWindow').document;
console.log(result);
});

这样输出来的结果是:document对象

您可能感兴趣的文章:

相关文章