将外部 URL 放入我的页面
可能的重复:
从外部页面提取元素的内容
有没有办法将外部页面放入我的页面但不能使用 iframe。目前我使用:
<?php
$homepage = file_get_contents('http://www.google.com/');
echo $homepage;
?>
但这不是真正优雅的解决方案。有一些优雅的解决方案吗?也许使用 jquery、java 脚本、php ...或其他一些...???我需要的是显示外部页面,但可以看到该外部页面的源代码...
更新:浏览器解决方案中的某些浏览器或类似的东西???
Possible Duplicate:
Extracting the content of an element from an external page
Is there any way to put external page into my page but not with iframe. Currently I using:
<?php
$homepage = file_get_contents('http://www.google.com/');
echo $homepage;
?>
but this is not really elegant solution. Is there some elegant solution for this? maybe with jquery, java script, php ... or some other ... ??? What I need is to show external page but to can see the source code od that external page...
UPDATE: some browser in browser solution or something similar???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在您的页面上显示外部页面的源代码:
If you want to show the source code of an external page on your page: