我从angularjs.org获取了例子:
<script type="text/ng-template" id="/tpl.html">
Content of the template.
</script>
<a ng-click="currentTpl='/tpl.html'" id="tpl-link">Load inlined template</a>
<div id="tpl-content" ng-include src="currentTpl"></div>
&#13;
但点击后我只能添加一个模板。 如何将几个模板附加到div id =&#34; tpl-content&#34;以及如何像Jquery一样追加第一个,最后一个,之前的等等?
请帮助