标签:style col get 加载 com 使用 span 跨域 www
通过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;
在页面点击功能后 控制台还会产生跨域报错
但是这样至少可以保证页面点击效果或者弹出层可以正常使用
标签:style col get 加载 com 使用 span 跨域 www
原文地址:https://www.cnblogs.com/phper8/p/12093219.html