如何使用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.
  1. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
  2. <script type="text/javascript" src="jquery.md5.js"></script>
  3.  
  4.  
  5. <script type="text/javascript">
  6. $(document).ready(function(){
  7.  
  8. url = "http://www.nealgrosskopf.com/tech/thread.asp?pid=17"
  9.  
  10. $.ajax({ type: "GET",
  11. dataType: "jsonp",
  12. url: "http://feeds.delicious.com/v2/json/urlinfo/"+$.md5(url),
  13. success: function(data){
  14. if (data.length > 0) {
  15. $("#delicious").text(data[0].total_posts);
  16. }
  17. }
  18. });
  19.  
  20. });
  21. </script>
  22.  
  23. p>Delicious: <span id="delicious"></span></p>

以上是关于如何使用JQuery和JSON获取美味书签的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段中的 JSON 响应中的对象获取数据

ActionScript 3 通过ActionScript 3(和as3corelib)获取美味的JSON提要

实用代码片段将json数据绑定到html元素 (转)

如何在 Reactjs 中添加丰富的代码片段?

如果我想从另一个片段中添加书签,为啥我的书签单词没有保存到 sqlite 数据库?

如何从 URL 获取片段标识符(哈希 # 后的值)?