上传图文素材
access_token:
上传类型:
素材:
function getText(){
var win = document.getElementById('hidden_frame').contentWindow;
alert(win.document.body.innerText);
}
父页面获取子页面的内容:
function getText(){
var iframe = document.getElementById('hidden_frame');
var iframeDoc = getIframeDocument(iframe);
alert(iframeDoc.body.innerText);
}
function getIframeDocument(iframe) {
return iframe.contentDocument || iframe.contentWindow.document;
}
或者子iframe中有多个子iframe时候选取第一个子iframe的内容:$('hidden_frame')[0].contentWindow
