jQuery获取iframe的document对象的方法
更新时间:2014年10月10日 17:33:13 投稿:whsnow
获取iframe的document对象进行dom的操作,实现方法很多,下面是jquery的实现过程,喜欢玩iframe的朋友可以参考下
获取iframe的document对象的目的就是进行dom的操作
$(function() { var result = $('#myframe').prop('contentWindow').document; console.log(result); });
这样输出来的结果是:document对象
最新评论