如何使用JQuery和JSON获取美味书签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用JQuery和JSON获取美味书签相关的知识,希望对你有一定的参考价值。
Find out how to retrieve a count of the total times users have bookmarked your web site or web page on Delicious by using JQuery and JSON.The code is pretty simple and can be done in under 18 lines of code.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script> <script type="text/javascript" src="jquery.md5.js"></script> <script type="text/javascript"> $(document).ready(function(){ url = "http://www.nealgrosskopf.com/tech/thread.asp?pid=17" $.ajax({ type: "GET", dataType: "jsonp", url: "http://feeds.delicious.com/v2/json/urlinfo/"+$.md5(url), success: function(data){ if (data.length > 0) { $("#delicious").text(data[0].total_posts); } } }); }); </script> p>Delicious: <span id="delicious"></span></p>
以上是关于如何使用JQuery和JSON获取美味书签的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 通过ActionScript 3(和as3corelib)获取美味的JSON提要