//jquery在父窗口中获取iframe中的元素
//1、获取页面firame1的html内容
$("#iframe1").contents().find("#form1").html()
//获取iframe内的网页标题
$("#iframe的ID").contents().attr("title");//jquery 方法1
//类似的方法
$(selector, window.top.document);
$(selector, window.opener.document);
$(selector, window.top.frames[0].document);
qkqqqqkqqq推荐的文章我也看了,不知道楼主试过没有,我试了下只有
$(document.getElementById('iframeId').contentWindow.document.body).html()
这个成功了,其他都说我缺少函数,可能是JQ版本的问题
你iframe跨域访问了啦,要想获取IP,有很多第三方的API的,如腾讯,新浪,淘宝等都有提供API你直接调用就行了,具体的你可以百度一下 IP地址库 api
http://www.cnblogs.com/liyuxin/archive/2011/10/06/2199931.html
他写的很好,可以看看
$("#if").html()
这个搞不到??