jQuery获取iframe的document对象的方法
时间:2021-01-23 10:12:55|栏目:jquery|点击: 次
获取iframe的document对象的目的就是进行dom的操作
$(function() { var result = $('#myframe').prop('contentWindow').document; console.log(result); });
这样输出来的结果是:document对象
栏 目:jquery
下一篇:jQuery Selectors(选择器)的使用(六、属性篇)
本文标题:jQuery获取iframe的document对象的方法
本文地址:http://www.codeinn.net/misctech/49549.html