用iframe跨域上传图片,怎样接收返回的json数据,目前有一个警告提示ResourceinterpretedasDocumentbuttransferredwithMIMEtypeapplication/json:"http://up.qiniu.com/".//构造一个隐藏的iframe,把表单放到iframe中提交,实现跨域post表单functionbtnSubmit(){//构造iframevariframe=document.createElement("iframe");iframe.name="ActionFrame";iframe.id="ActionFrame";iframe.style="display:none";//设置隐藏该iframedocument.body.appendChild(iframe);//构造一个对象。插入页面中。//开始提交varMyForm=document.getElementById("upLoadPortrait");MyForm.target="ActionFrame";//让表单在iframe中提交MyForm.submit();//执行提交。alert(document.getElementById('ActionFrame').contentWindow.document.toString());}
添加回答
举报
0/150
提交
取消