如何从客户端 (jQuery) 获取 Alexa 排名?
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下链接提供了有关如何读取数据并显示数据的分步说明。
http://think2loud.com/224-reading-xml-with-jquery/
您基本上必须深入研究每个级别,这需要根据您的应用程序和所提取的数据进行定制。
添加
为了从外部域中提取 xml 数据,首先使用 php 将其提取到站点上的单独页面中。一旦数据位于本地页面中,您就可以对其执行任何操作。
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.