好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

jQuery获取iframe的document对象的方法_jquery

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

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

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

查看更多关于jQuery获取iframe的document对象的方法_jquery的详细内容...

  阅读:58次