html中利用js调用php文件输出文本 100
header("Expires:Mon,26Jul199705:00:00GMT");header("Cache-Control:no-cache,must-revali...
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
$files="链接没有填写,以免百度作为广告处理";
$fp=file_get_contents($files);
$fp=str_replace('document.writeln("',"",$fp);
$fp=str_replace('");',"",$fp);
$fp=str_replace('\/',"/",$fp);
$fp=str_replace("\'","'",$fp);
$fp=str_replace("'/","'链接没有填写,以免百度作为广告处理/",$fp);
echo $fp;
html中利用js或ajax调用php文件并在源代码输出文本
现在在页面用js调用可以显示新闻,但是在查看源码确是看不到新闻列表和连接。请高手不要讲理论。直接帮我写一个js或者ajax获取的代码。要查看源代码时可以看到新闻列表和连接。谢谢!!在线等....
上面这段php代码直接访问是可以显示新闻源码的。但是调用就不会显示源代码了。 说明一下:不是跨域的。是在同一个域名下的。
这么久都没有人回答。是不是无法实现啊??
哎..... 展开
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
$files="链接没有填写,以免百度作为广告处理";
$fp=file_get_contents($files);
$fp=str_replace('document.writeln("',"",$fp);
$fp=str_replace('");',"",$fp);
$fp=str_replace('\/',"/",$fp);
$fp=str_replace("\'","'",$fp);
$fp=str_replace("'/","'链接没有填写,以免百度作为广告处理/",$fp);
echo $fp;
html中利用js或ajax调用php文件并在源代码输出文本
现在在页面用js调用可以显示新闻,但是在查看源码确是看不到新闻列表和连接。请高手不要讲理论。直接帮我写一个js或者ajax获取的代码。要查看源代码时可以看到新闻列表和连接。谢谢!!在线等....
上面这段php代码直接访问是可以显示新闻源码的。但是调用就不会显示源代码了。 说明一下:不是跨域的。是在同一个域名下的。
这么久都没有人回答。是不是无法实现啊??
哎..... 展开
2个回答
展开全部
<html>
<body>
<div id='news'></div>
<ifrmame style="display:none" src='get_news.php'></iframe>
</body>
</html>
get_news.php:
<html>
<script>
onload=function()
{
parent.document.getElementById('news').innerHTML=document.getElementById('contents').innerHTML;
}
</script>
<body id='contents'>
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
$files="链接没有填写,以免百度作为广告处理";
$fp=file_get_contents($files);
$fp=str_replace('document.writeln("',"",$fp);
$fp=str_replace('");',"",$fp);
$fp=str_replace('\/',"/",$fp);
$fp=str_replace("\'","'",$fp);
$fp=str_replace("'/","'链接没有填写,以免百度作为广告处理/",$fp);
echo $fp;
?>
</body>
</html>
<body>
<div id='news'></div>
<ifrmame style="display:none" src='get_news.php'></iframe>
</body>
</html>
get_news.php:
<html>
<script>
onload=function()
{
parent.document.getElementById('news').innerHTML=document.getElementById('contents').innerHTML;
}
</script>
<body id='contents'>
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
$files="链接没有填写,以免百度作为广告处理";
$fp=file_get_contents($files);
$fp=str_replace('document.writeln("',"",$fp);
$fp=str_replace('");',"",$fp);
$fp=str_replace('\/',"/",$fp);
$fp=str_replace("\'","'",$fp);
$fp=str_replace("'/","'链接没有填写,以免百度作为广告处理/",$fp);
echo $fp;
?>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询