如何从客户端 (jQuery) 获取 Alexa 排名?

发布于 2025-01-03 17:13:42 字数 198 浏览 0 评论 0原文

我需要使用 jQuery 从客户端读取 Alexa 排名。 URL 是这样的:

http://data.alexa.com/data?cli=10&data=snbamz&url=http://www.facebook.com

返回的对象是 XML 格式的,所以我不能使用 JSON。有什么建议吗?

I need to read Alexa rank from client side with usage of jQuery.
The URL is like this:

http://data.alexa.com/data?cli=10&data=snbamz&url=http://www.facebook.com

The returned object is XML formatted so I cannot use JSON. Any suggestion ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏有森光若流苏 2025-01-10 17:13:42

以下链接提供了有关如何读取数据并显示数据的分步说明。

http://think2loud.com/224-reading-xml-with-jquery/

您基本上必须深入研究每个级别,这需要根据您的应用程序和所提取的数据进行定制。

添加

为了从外部域中提取 xml 数据,首先使用 php 将其提取到站点上的单独页面中。一旦数据位于本地页面中,您就可以对其执行任何操作。

$homepage = file_get_contents('http://data.alexa.com/data?cli=10&data=snbamz&url=http://www.facebook.com');
echo $homepage;

The following link gives step by step instructions on how to read the data and display it.

http://think2loud.com/224-reading-xml-with-jquery/

You basically have to dig into each level, which will need to be made custom to your application and the data being pulled.

Addition

In order to pull the xml data from an external domain, first pull it into a separate page on your site using php. Once the data is in a local page you may do whatever you want with it.

$homepage = file_get_contents('http://data.alexa.com/data?cli=10&data=snbamz&url=http://www.facebook.com');
echo $homepage;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文