ACMer博客瀑布流分析
ACMer博客瀑布流是一个专门收集ACMer博客并展示的站点。地址 http://blog.acmicpc.info/ 打开网页之后直接查看源代码发现 function entry2html(entry) { var html = ''; html += '<div class="box" id="entry-' + entry.rss_entry_id + '">'; html += '<div class="entry-title">'; html += '<a onclick="click_entry(' + entry.rss_entry_id + ')" href="' + entry.link + '" target="_blank">' + entry.title + '</a>'; html += '</div>'; html += '<div class="entry-time">'; html += entry.crawled; html += '</div>'; html += '<div class="entry-author">'; html += '<a href="' + entry.author_link + '" target="_blank"> '; html += entry.author_name; html += '</a>'; html