加载不同域名页面 跨域问题解决
Posted phper8
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加载不同域名页面 跨域问题解决相关的知识,希望对你有一定的参考价值。
通过php抓取页面在显示出来
<?php
$url = ‘http://www.baidu.com‘; $content = file_get_contents($url); $content = str_replace(‘/static/‘,$url .‘/static/‘,$content); $content = str_replace(‘/index.php‘,$url.‘/index.php‘,$content); echo $content;
在页面点击功能后 控制台还会产生跨域报错
但是这样至少可以保证页面点击效果或者弹出层可以正常使用
以上是关于加载不同域名页面 跨域问题解决的主要内容,如果未能解决你的问题,请参考以下文章