如何将标题作为第一个绑定和下面的内容,而单独标题时标记为

时间:2016-09-29 03:36:20

标签: angularjs html5 angularjs-directive angularjs-scope

 <li class="checked-list" ng-repeat="detail in ctrl.details">Your details are <strong ng-bind="detail.Id"></strong>.
    <br/>
    <span ng-bind="detail.description"></span>
 </li>

我想要输出如下:

X 您的详细信息为医生

覆盖澳大利亚北部和南部的3个州的博士。

目前,它显示如下:(我的意思是X对于标题和内容都很常见。我希望X只在标题行上)

您的详细信息医生

X

覆盖澳大利亚北部和南部的3个州的博士。

1 个答案:

答案 0 :(得分:0)

我将X保留为默认项目符号选项,如果您希望可以使用css将其更改为数字或其他项目样式

https://plnkr.co/edit/2MXhucXw0bjWUJ1UfOSb?p=preview

<ul>
    <li class="checked-list" ng-repeat="detail in ctrl">
      Your details are                     
        <strong ng-bind="detail.Id"></strong>                                                    <br />
        <span ng-bind="detail.description">
        </span>
    </li>
  </ul>

检查plunkr以获得答案