首先确定自己写的方法对不对:
$(document.getElementById('iframe的ID').contentWindow.document.body).find("要获得的元素")
如果正确,但还是无法获得,那么就是因为 上边的方法在iframe没加载完的时候运行了。那么我们就需要这个方法:
$("iframe的id").load(function () {
$(document.getElementById('iframe的ID').contentWindow.document.body).find("要获得的元素")
}
这个方法就是,当iframe加载完后,触发事件。