Dug.js
- 授权协议: WTFPL
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://rog.ie/blog/dugjs-a-jsonp-to-html-script
软件介绍
Dug.js —— A JSONP to HTML Script
示例代码:
<script>
dug({
endpoint: 'http://api.dribbble.com/players/justinmezzell/shots',
template: '<ul>\
{{#shots}}\
<li>\
<a href="{{url}}" title="{{title}}">\
<img src="{{image_400_url}}" alt="Image of {{title}}">\
</a>\
</li>\
{{/shots}}\
</ul>'
});
</script>
