jQuery获取iframe的document对象的方法
获取iframe的document对象的目的就是进行dom的操作
$(function() {
var result = $('#myframe').prop('contentWindow').document;
console.log(result);
});
这样输出来的结果是:document对象
以上是 jQuery获取iframe的document对象的方法 的全部内容, 来源链接: utcz.com/z/326061.html