我需要将此json数据附加到html元素。

[
    {
        "website":"google",
        "link":"http://google.com"
    },
    {
        "website":"facebook",
        "link":"http://fb.com"
    }
]

如何使用任何插件轻松地将其转换。目前,我在jquery中找不到任何简单的插件,所以请帮助我的 friend 们。

提前致谢..........

最佳答案

嗨,您可以使用jPut jQuery插件(http://plugins.jquery.com/jput/)

创建一个HTML jPut模板

<div jput="template">
  <a href="{{link}}">{{website}}</a>
</div>
<div id="main">
</div>

<script>
$(document).ready(function(){
var json=[{"website":"google","link":"http://google.com"},
    {"website":"facebook","link":"http://fb.com"}];

   $('#main').jPut({
       jsonData:json,   //your json data
       name:'template'  //jPut template name
   });
});
</script>

09-07 19:27