工作中遇到的js跨域问题总结

起因:之前在做一个项目的时候有这样一个问题,127.0.0.1域名上的一个页面A.html,需要访问127.0.0.2域名上B.html页面中的一个方法。这就涉及到JS跨域访问了,通过查阅资料,得以解决,现总结一下。

具体问题:在A.html页面有一个下载按钮,当点击下载的时候,要访问B.html页面的方法,然后下载资源,苦苦寻找,终得良方。

 

良方如下:

     第一步  在A.html页面里面创建一个  iframe   ,

 

 

 

//导出按钮 $("#导出").click(function () { exec_iframe() }); //跨域访问execB.html页面 function exec_iframe() { if (typeof (exec_obj) == 'undefined') { exec_obj = document.createElement('iframe'); exec_obj.name = 'tmp_frame'; exec_obj.src = "http://127.0.0.2:8001"+'/execB.html'; exec_obj.style.display = 'none'; document.body.appendChild(exec_obj); } else { exec_obj.src = "http://127.0.0.2:8001"+'/execB.html'; } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyypzx.html