成功实现ajax,xmlhttp跨域访问
来源:岁月联盟
时间:2007-12-03
a.com站点聚合b.com站点内RSS资源方法如下:
在a.com内使用动态网页(ASP、PHP、JSP或者其他)作为代理读取b.com中rss内容,再在a.com中使用ajax读取分析该动态网页。
PHP代码:
以下是引用片段:
<?
echo file_get_contents("http://b.com/rss.xml");
?>
ASP代码:
以下是引用片段:
<%
p = "http://b.com/rss.xml"
Response.BinaryWrite ZQcnGet(p)
Response.Flush
Function ZQcnGet(url)
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", url, False, "", ""
.Send
ZQcnGet = .ResponseBody
End With
Set Retrieval = Nothing
End Function
%>
JSP代码:
以下是引用片段:
<%
URLUtil util = new URLUtil("http://b.com/rss.xml");
String news = util.getContent();
System.out.println(news);
%>
接下来在a.com中使用ajax读取分析该动态网页就可以了。