如何获得iframe内容?

时间:2011-10-30 23:46:54

标签: jquery

如何从带有标题content-type: text/plan的iframe获取内容?

是否可以在不重新加载内容的情况下使用$.ajax()加载内容?

iframe内容:

{"result":{"posts":0,"posts_imported":0},"error":{"file":{"msg":"ERR_ERROR_FILE","trans":{"file":"csv"}}}}

2 个答案:

答案 0 :(得分:0)

在Jquery中:

var content = $("iframe").contents();

答案 1 :(得分:-1)

怎么样:

你的iframe html文件:

div

<div id='iframeContent'>
    {"result":{"posts":0,"posts_imported":0},"error":{"file":{"msg":"ERR_ERROR_FILE","trans":{"file":"csv"}}}}
</div>

然后你的代码将替换它,我相信,

$('your-iframeid').childen('<div>',0).text(your-new-text);

我是初学者;所以,我可能完全不在这个(也是)。