在jquery和php中读取外部服务器文件

时间:2010-09-27 07:32:28

标签: php jquery

我需要在我的代码中加载外部html页面

$(document).ready(function(){$("#check").load("http://www.mysite.com/names.html")});

我需要我的脚本读取这个外部html页面

是否有可能在 jquery甚至在php中做这样的事情?!

我需要知道所有可能的方法。

3 个答案:

答案 0 :(得分:0)

使用.ajax而不是.load

$.ajax({
  url: "http://www.mysite.com/names.html",
  cache: false,
  success: function(html){
    //Do some thing with html
  }
});

查看更多: http://api.jquery.com/jQuery.ajax/

答案 1 :(得分:0)

如果您需要访问的页面驻留在外部服务器上,则必须使用curl通过本地服务器代理它。 Demo and Documentation here.然后,您可以对您的卷曲页面进行AJAX调用。

答案 2 :(得分:0)

那么,在PHP端使用cURL并通过Ajax将其返回到页面呢?