php如何读取指定页面
如何使页面限制<div></div>中,点击里面的连接不会弹出,而是在<div></div>中显示<style>#box{height:300px;width:300px...
如何使页面限制<div></div>中,点击里面的连接不会弹出,而是在<div></div>中显示
<style>
#box{ height:300px; width:300px; border:thick}
</style>
<div id="box"><?php
$url = "http://www.baidu.com/";//要读取的网页地址
$content = file_get_contents($url);//读取内容
echo $content;//输出读取的内容
?></div> 展开
<style>
#box{ height:300px; width:300px; border:thick}
</style>
<div id="box"><?php
$url = "http://www.baidu.com/";//要读取的网页地址
$content = file_get_contents($url);//读取内容
echo $content;//输出读取的内容
?></div> 展开
2012-04-05
展开全部
这个需要用到ajax,不能把php代码直接放到<div id="box"></div>中,可以用jquery的
test.php
<?php
$url = "http://www.baidu.com/";//要读取的网页地址
$content = file_get_contents($url);//读取内容
echo $content;//输出读取的内容
?>
$.ajax({
url: "test.php",
cache: false,
success: function(html){
$("#box").html(html);
}
});
test.php
<?php
$url = "http://www.baidu.com/";//要读取的网页地址
$content = file_get_contents($url);//读取内容
echo $content;//输出读取的内容
?>
$.ajax({
url: "test.php",
cache: false,
success: function(html){
$("#box").html(html);
}
});
2012-04-05 · 知道合伙人软件行家
关注
展开全部
如果要限制在div中间比较麻烦,我感觉可以用iframe可能更易解决。
或者可以将获取到的网页进行处理,对于所有的连接地址,后面都添加target限制。
或者可以将获取到的网页进行处理,对于所有的连接地址,后面都添加target限制。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询