var liObj = $("li",$("#chapterTemplate")).clone();
$(".outline_name", liObj).text(chapter.title);
$(".outline_descr", liObj).text(chapter.descr);
liObj.appendTo("#couList");
clone id=chapterTemplate
class=outline_name设置text
class=outline_descr设置text
设置好之后将liObj 放入id=couList
随便写,只要实现异步加载就行了